Created
March 29, 2019 20:12
-
-
Save isacjunior/1aaaabba35ecd275f4c6430bbacb4dcf 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
import React, { useEffect } from 'react' | |
function WillUnmount() { | |
useEffect(() => { | |
console.log('Eu estou montado') | |
return () => { | |
console.log('Vou desmontar') | |
} | |
}, []) | |
return ( | |
<> | |
...Content | |
</> | |
) | |
} | |
export default WillUnmount | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment