Skip to content

Instantly share code, notes, and snippets.

@showmeyourhits
Created November 26, 2017 21:13
Show Gist options
  • Save showmeyourhits/764dcb10cc29340a08e58c4463e9c88a to your computer and use it in GitHub Desktop.
Save showmeyourhits/764dcb10cc29340a08e58c4463e9c88a to your computer and use it in GitHub Desktop.
// https://github.com/facebook/react/blob/913a125ad51777ffec91eedefa03c534a7590395/packages/react-reconciler/src/ReactFiberClassComponent.js#L191
if (type.prototype && type.prototype.isPureReactComponent) {
return (
!shallowEqual(oldProps, newProps) || !shallowEqual(oldState, newState)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment