react does getDerivedStateFromProps rerender component? code example
Example 1: shouldcomponentupdate
shouldComponentUpdate(nextProps, nextState) {
return true;
}
Example 2: component did mmount
componentDidUpdate(prevProps, prevState, snapshot)