What are the lifecycle methods going to be deprecated in React v16?
- componentWillMount and componentWillReceiveProps
- componentWillMount and componentWillUpdate
- componentWillReceiveProps and componentWillUpdate
- componentWillUpdate and componentDidUpdate
The "componentWillReceiveProps" and "componentWillUpdate" lifecycle methods are going to be deprecated in React v16. These methods will be replaced with new lifecycle methods that are more efficient and easier to reason about. The new methods are "getDerivedStateFromProps" and "getSnapshotBeforeUpdate".
Loading...