Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GuillaumeDaviid/f1864897fb4a34964f12a0d2caa02911 to your computer and use it in GitHub Desktop.
Save GuillaumeDaviid/f1864897fb4a34964f12a0d2caa02911 to your computer and use it in GitHub Desktop.
hooks : example 1
useEffect(() => {
const timer = window.setInterval(() => {
setState(n => n + 1), 1000)
return function () {
clearInterval(timer)
}
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment