Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Created March 29, 2019 20:12
Show Gist options
  • Save isacjunior/1aaaabba35ecd275f4c6430bbacb4dcf to your computer and use it in GitHub Desktop.
Save isacjunior/1aaaabba35ecd275f4c6430bbacb4dcf to your computer and use it in GitHub Desktop.
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