This is how we use componentWillReceiveProps
componentWillReceiveProps(nextProps) {
if(nextProps.myProp !== this.props.myProps) {
// nextP
The main difference between the two is:
stateAs the names suggest – and as you probably know since you mentioned "if I do setState in componentDidUpdate, render will trigger twice" – componentDidUpdate is called after the component updates (received new props or state). This is why the parameters to this function is prevProps and prevState.
So if you wanted to do something before the component received new props, you'd use componentWillReceiveProps, and if you wanted to do something after it received new props or state, you'd use componentDidUpdate.
state?The main difference here is:
componentWillReceiveProps will update state synchronously componentDidUpdate will update state asynchronously.This can be important as there are some gotchya's that can come up when trying to sync state with other parts of your component's props.