Skip to content

Instantly share code, notes, and snippets.

@alpavlove
Created May 23, 2022 11:27
Show Gist options
  • Save alpavlove/8d7b906cc26ba1ccfa8820ca6461a194 to your computer and use it in GitHub Desktop.
Save alpavlove/8d7b906cc26ba1ccfa8820ca6461a194 to your computer and use it in GitHub Desktop.
React Hooks instead of lifecycle methods - useEffect hook instead of componentWillUnmount
useEffect(() => {
// to do smth...
return () => {
// to do smth else when a component is unmounted...
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment