Skip to content

Instantly share code, notes, and snippets.

@nirsky
Created December 25, 2018 12:38
Show Gist options
  • Select an option

  • Save nirsky/280cfc38a6a7be606a5b916f91e12238 to your computer and use it in GitHub Desktop.

Select an option

Save nirsky/280cfc38a6a7be606a5b916f91e12238 to your computer and use it in GitHub Desktop.
//Class
componentWillUnmount() {
console.log('I am unmounting');
}
//Hooks
useEffect(() => {
return () => console.log('I am unmounting');
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment