Interactivity and Dynamic UIs
  • References/JavaScript/React/Guides

You've already learned how to display data with React. Now let's look at how to make our UIs interactive

2025-01-10 15:47:30
React.Children
  • References/JavaScript/React/React

React.Children React.Children provides utilities for dealing with the this.props.children opaque data structure.

2025-01-10 15:47:30
Dangerously Set innerHTML
  • References/JavaScript/React/Tips

Improper use of the innerHTML can open you up to a cross-site scripting

2025-01-10 15:47:30
Why React?
  • References/JavaScript/React/Guides

React is a JavaScript library for creating user interfaces by Facebook and Instagram. Many people choose to think of React as the V in

2025-01-10 15:47:30
componentWillUnmount
  • References/JavaScript/React/Component

Unmounting: componentWillUnmount void componentWillUnmount()

2025-01-10 15:47:30
componentWillUpdate
  • References/JavaScript/React/Component

Updating: componentWillUpdate void componentWillUpdate( object nextProps, object nextState

2025-01-10 15:47:30
React.PropTypes
  • References/JavaScript/React/React

React.PropTypes React.PropTypes includes types that can be used with a component's propTypes object to validate props

2025-01-10 15:47:30
Advanced Performance
  • References/JavaScript/React/Guides

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

2025-01-10 15:47:30
Test Utilities
  • References/JavaScript/React/Guides

ReactTestUtils makes it easy to test React components in the testing framework of your choice (we use

2025-01-10 15:47:30
Performance Tools
  • References/JavaScript/React/Guides

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

2025-01-10 15:47:30