componentWillUnmount in react example
Example 1: shouldcomponentupdate
shouldComponentUpdate(nextProps, nextState) {
return true;
}
Example 2: component did mmount
componentDidMount()
shouldComponentUpdate(nextProps, nextState) {
return true;
}
componentDidMount()