Skip to content

Instantly share code, notes, and snippets.

@mushfiqweb
Created May 4, 2017 17:47
Show Gist options
  • Select an option

  • Save mushfiqweb/62f44b583247ad08c70551e8553928d9 to your computer and use it in GitHub Desktop.

Select an option

Save mushfiqweb/62f44b583247ad08c70551e8553928d9 to your computer and use it in GitHub Desktop.
class MyComponent extends React.Component {
// only re-render if the ID has changed!
shouldComponentUpdate(nextProps, nextState) {
return nextProps.id === this.props.id;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment