Skip to content

Instantly share code, notes, and snippets.

@NoamELB
Last active November 22, 2017 06:52
Show Gist options
  • Save NoamELB/19bc210cf2f53f792a0b425373ec88ce to your computer and use it in GitHub Desktop.
Save NoamELB/19bc210cf2f53f792a0b425373ec88ce to your computer and use it in GitHub Desktop.
should not update with pure component
class ShouldNotUpdate extends React.PureComponent {
constructor(props) {
super(props);
this.counter = 0;
}
render() {
return `I should be rendered only 1 time. actual times rendered: ${++this.counter}`;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment