React React is the entry point to the React library. If you're using one of the prebuilt packages it's available
In React, inline styles are not specified as a string. Instead they are specified with an object whose key is the camelCased version of the style name, and whose value is the
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.
When designing interfaces, break down the common design elements (buttons, form fields, layout components, etc.) into reusable components with well-defined interfaces. That
Unmounting: componentWillUnmount void componentWillUnmount()
Currently, in a component's render, you can only return one node; if you have, say, a list of divs to return, you must wrap your components within
ReactDOMServer.renderToString string renderToString(ReactElement element)
setState void setState( function|object nextState, [function callback] )
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
displayName string displayName The displayName
Page 4 of 10