Skip to content

Instantly share code, notes, and snippets.

@nirsky
Created December 25, 2018 12:37
Show Gist options
  • Save nirsky/a78922cbe8d7e13a484d7e0b2f84b180 to your computer and use it in GitHub Desktop.
Save nirsky/a78922cbe8d7e13a484d7e0b2f84b180 to your computer and use it in GitHub Desktop.
//Class
componentDidMount() {
console.log('I just mounted!');
}
//Hooks
useEffect(() => {
console.log('I just mounted!');
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment