should component update
npm install component-pure-rendernpm install --save component-pure-render
import {Component} from 'react';
import shouldComponentUpdate from 'component-pure-render';
class ComponentName extends Component {
constructor(props) {
super(props);
this.shouldComponentUpdate = shouldComponentUpdate.bind(this);
}
render() {
return (
123
);
}
}
export default ComponentName;
``