Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created March 19, 2020 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsh-code/5b1d3d66c14d1927cc5b7229fa583806 to your computer and use it in GitHub Desktop.
Save tsh-code/5b1d3d66c14d1927cc5b7229fa583806 to your computer and use it in GitHub Desktop.
componentDidUpdate(prevProps, prevState) {
// Always compare props or state
if (this.props.counter !== prevProps.counter) {
this.postCounter(this.props.counter);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment