Created
October 22, 2017 05:49
-
-
Save tkssharma/f71a224ea8415b93770859b51da1e656 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//-------------------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