Method | Side effects1 | State updates2 | SSR | Example uses |
---|---|---|---|---|
Mounting | ||||
constructor | ✓ | ✓ | Called before it is mounted | |
componentWillMount |
:/ | ✓ | Constructor equivalent for createClass |
|
render |
Create and return element(s) | ✓ | ||
componentDidMount |
✓ | ✓ | DOM manipulations, network requests, etc. | |
Updating |