Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Created March 29, 2019 20:05
Show Gist options
  • Save isacjunior/1f04c3021a690921f7a1a7efb2884cfd to your computer and use it in GitHub Desktop.
Save isacjunior/1f04c3021a690921f7a1a7efb2884cfd to your computer and use it in GitHub Desktop.
import React, { Component } from 'react'
class WillUnmount extends Component {
componentDidMount() {
console.log('Eu estou montado')
}
componentWillUnmount() {
console.log('Vou desmontar')
}
render() {
return (
<>
...Content
</>
)
}
}
export default WillUnmount
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment