added incompatibilities note to installation.md

This commit is contained in:
Dzung Nguyen
2017-12-23 15:10:21 +07:00
parent 5241518be8
commit 9f08b33596
2 changed files with 4 additions and 4 deletions

View File

@@ -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.

View File

@@ -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