The most basic thing you can do with a UI is display some data. React makes it easy to display data and automatically keeps the interface up-to-date when the data changes.
shallowCompare is a helper function to achieve the same functionality as PureRenderMixin while using ES6 classes with React. If
ReactTestUtils makes it easy to test React components in the testing framework of your choice (we use
React is usually quite fast out of the box. However, in situations where you need to squeeze every ounce of performance out of your app, it provides a shouldComponentUpdate
One of the first questions people ask when considering React for a project is whether their application will be as fast and responsive as an equivalent non-React version. The
It's a common pattern in React to wrap a component in an abstraction. The outer component exposes a simple property to do something that might have more complex implementation
We've tried to make React as environment-agnostic as possible. People use React in a variety of languages (JavaScript, TypeScript, ClojureScript, etc) and in a variety of environments
The React add-ons are a collection of useful utility modules for building React apps. These should be considered experimental and tend to change more often
Note: cloneWithProps is deprecated. Use React.cloneElement instead. In rare situations, you may want
ReactLink is an easy way to express two-way binding with React. ReactLink is deprecated as of React v15. The recommendation
Page 2 of 3