Created
July 24, 2019 00:01
-
-
Save Restoration/8a8c780cae578417cbd4c2f52511c0a2 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(() => { | |
| 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