Skip to content

Instantly share code, notes, and snippets.

@SOliv1
Created July 11, 2022 13:15
Show Gist options
  • Save SOliv1/de7bec4f2d8c3e75ba725fd22fab2081 to your computer and use it in GitHub Desktop.
Save SOliv1/de7bec4f2d8c3e75ba725fd22fab2081 to your computer and use it in GitHub Desktop.
COMPONENT LIFECYCLE METHODS Introduction to Lifecycle Methods
https://gist.github.com/8e23eb6d25c868246b7fe74fcaa6dfa0
@SOliv1
Copy link
Author

SOliv1 commented Jul 11, 2022

componentDidUpdate(prevProps) {
if (this.props.isPrecise === prevProps.isPrecise) {
return;
}

@SOliv1
Copy link
Author

SOliv1 commented Jul 11, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment