Skip to content

Instantly share code, notes, and snippets.

@gisderdube
Last active February 6, 2019 12:06
Show Gist options
  • Select an option

  • Save gisderdube/284457d15a0828c438b05fe98e298639 to your computer and use it in GitHub Desktop.

Select an option

Save gisderdube/284457d15a0828c438b05fe98e298639 to your computer and use it in GitHub Desktop.
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