Skip to content

Instantly share code, notes, and snippets.

@heron2014
Created December 1, 2020 13:38
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 heron2014/c8fd0924201d3dfa276e8f330f812cd8 to your computer and use it in GitHub Desktop.
Save heron2014/c8fd0924201d3dfa276e8f330f812cd8 to your computer and use it in GitHub Desktop.
useEffect componentWillUnmount - clean up
// Class
componentWillUnmount() {
console.log('I am unmouting');
}
// Hooks
useEffect(() => {
return () => console.log('I am unmounting, run me to do any clean up');
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment