Skip to content

Instantly share code, notes, and snippets.

@guaracyalima
Created November 14, 2019 17:23
Show Gist options
  • Save guaracyalima/eaf05e1da2d4457df82e4e5c5b3cd087 to your computer and use it in GitHub Desktop.
Save guaracyalima/eaf05e1da2d4457df82e4e5c5b3cd087 to your computer and use it in GitHub Desktop.
Ciclo de vida do React
class ExemploComponentWillMount extends React.Component {
constructor(props) {
super(props);
}
componentWillMount() {
//executa alguma coisa antes da montagem do compoente no DOM
}
//outros metodos ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment