Created
December 25, 2018 12:38
-
-
Save nirsky/280cfc38a6a7be606a5b916f91e12238 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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