UNPKG

react-daterange-picker-onedesert

Version:
14 lines (10 loc) 276 B
import shallowEqual from '../utils/shallowEqual'; const PureRenderMixin = { shouldComponentUpdate(nextProps, nextState) { return ( !shallowEqual(this.props, nextProps) || !shallowEqual(this.state, nextState) ); }, }; export default PureRenderMixin;