Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Last active March 27, 2019 14:45
Show Gist options
  • Save isacjunior/dc0ab49327e05f544c923ab6150d1077 to your computer and use it in GitHub Desktop.
Save isacjunior/dc0ab49327e05f544c923ab6150d1077 to your computer and use it in GitHub Desktop.
// componentDidMount com class
import React, { Component } from 'react'
class DidMount extends Component {
componentDidMount() {
console.log('Eu estou montado')
}
render() {
return <>content</>
}
}
export default DidMount
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment