Browse Source

added incompatibilities note to installation.md

main
Dzung Nguyen 7 years ago
parent
commit
9f08b33596
  1. 4
      content/docs/installation.md
  2. 4
      content/docs/reference-test-renderer.md

4
content/docs/installation.md

@ -89,6 +89,10 @@ npm install --save react react-dom
Both Yarn and npm download packages from the [npm registry](http://npmjs.com/).
> Note:
>
> To prevent potential incompatibilities, all `react` packages should use the same version (eg `react@16.2.0`, `react-dom@16.2.0`, `react-test-renderer@16.2.0`).
### Enabling ES6 and JSX
We recommend using React with [Babel](http://babeljs.io/) to let you use ES6 and JSX in your JavaScript code. ES6 is a set of modern JavaScript features that make development easier, and JSX is an extension to the JavaScript language that works nicely with React.

4
content/docs/reference-test-renderer.md

@ -19,10 +19,6 @@ This package provides a React renderer that can be used to render React componen
Essentially, this package makes it easy to grab a snapshot of the platform view hierarchy (similar to a DOM tree) rendered by a React DOM or React Native component without using a browser or [jsdom](https://github.com/tmpvar/jsdom).
> Note:
>
> To prevent potential incompatibilities, all `react` packages should use the same version (eg `react@16.2.0`, `react-dom@16.2.0`, `react-test-renderer@16.2.0`).
Example:
```javascript

Loading…
Cancel
Save