As with React v0.13 and v0.14, the default implementation is null and according to this logic:
var shouldUpdate = this._pendingForceUpdate || !inst.shouldComponentUpdate || inst.shouldComponentUpdate(nextProps, nextState, nextContext);
the component is updated every rendering cycle (since !inst.shouldComponentUpdate evaluates to true ).
source share