This is forked from @bvaughn's React lifecycle cheatsheet to integrate the changes made in lifecycle methods in 16.3
Method | Side effects1 | State updates2 | Example uses |
---|---|---|---|
Mounting | |||
componentWillMount |
Deprecated | ||
render |
Create and return element(s) | ||
componentDidMount |
✓ | ✓ | DOM manipulations, network requests, etc. |