Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created October 22, 2017 05:49
Show Gist options
  • Save tkssharma/f71a224ea8415b93770859b51da1e656 to your computer and use it in GitHub Desktop.
Save tkssharma/f71a224ea8415b93770859b51da1e656 to your computer and use it in GitHub Desktop.
//-------------------1-----------------------//
shouldComponentUpdate(nextProps) {
// expensive!
return isDeepEqual(this.props, nextProps);
}
//-------------------2-------------------------//
// super fast - all you are doing is checking references!
shouldComponentUpdate(nextProps) {
return isObjectEqual(this.props, nextProps);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment