Skip to content

Instantly share code, notes, and snippets.

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