Created
December 1, 2020 13:31
-
-
Save heron2014/7636fdf040d461510c56e21765e36304 to your computer and use it in GitHub Desktop.
useEffect componentDidMount
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Class | |
componentDidMount() { | |
console.log('Run me only when the component is first rendered/mounted'); | |
} | |
// Hooks | |
useEffect(() => { | |
console.log('Run this arrow function only when the component is first rendered/mounted'); | |
}, []) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment