I would like to override react component lifecycles (like shouldComponentUpdate) and call the default ones if necessary. I tried starting with something like:
shouldComponentUpdate(nextProps, nextState) {
return super.shouldComponentUpdate(nextProps, nextState);
}
But it does not work. What am I missing?