fec79e92ac306b651149461d199ba56179abc2fec73fabc37dbbebb4d81f17956bd97591f1c6c0fdd3a9f37b4a51e01444ca867d334f9821ad95c8bc7b40d8 737 B

12345678910111213
  1. # `react`
  2. React is a JavaScript library for creating user interfaces.
  3. The `react` package contains only the functionality necessary to define React components. It is typically used together with a React renderer like `react-dom` for the web, or `react-native` for the native environments.
  4. **Note:** by default, React will be in development mode. The development version includes extra warnings about common mistakes, whereas the production version includes extra performance optimizations and strips all error messages. Don't forget to use the [production build](https://reactjs.org/docs/optimizing-performance.html#use-the-production-build) when deploying your application.
  5. ## Example Usage
  6. ```js
  7. var React = require('react');
  8. ```