Last active
February 6, 2019 12:06
-
-
Save gisderdube/284457d15a0828c438b05fe98e298639 to your computer and use it in GitHub Desktop.
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( | |
| () => { // 1. effect function | |
| console.log('effect') | |
| document.title = count | |
| return () => { // 2. cleanup function | |
| console.log('cleanup') | |
| } | |
| }, | |
| [count], // 3. watch-array | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment