Skip to content

Instantly share code, notes, and snippets.

@Restoration
Created July 24, 2019 00:01
Show Gist options
  • Select an option

  • Save Restoration/8a8c780cae578417cbd4c2f52511c0a2 to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/8a8c780cae578417cbd4c2f52511c0a2 to your computer and use it in GitHub Desktop.
useEffect(() => {
window.addEventListener('mousemove', () => {});
// returned function will be called on component unmount
return () => {
window.removeEventListener('mousemove', () => {})
}
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment