Skip to content

Instantly share code, notes, and snippets.

@atmd83
Created February 27, 2018 12:49
Show Gist options
  • Save atmd83/0ba42d47e8b8273e0d9b53296872aa76 to your computer and use it in GitHub Desktop.
Save atmd83/0ba42d47e8b8273e0d9b53296872aa76 to your computer and use it in GitHub Desktop.
medium post updated shouldComponentUpdate
shouldComponentUpdate(nextProps, nextState) {
if (this.props.value !== nextProps.value) {
PubSub.publish('thing.should.update');
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment