Created
May 23, 2022 11:28
-
-
Save alpavlove/544e359d4aba5f618d475ca3dfe11094 to your computer and use it in GitHub Desktop.
React Hooks instead of lifecycle methods
This file contains hidden or 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
useEffect(() => { | |
console.log(title) | |
}, [title]) // Re-run the effect only if title was changed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment