Skip to content

Instantly share code, notes, and snippets.

@janpaepke
Created July 4, 2022 09:50
Show Gist options
  • Select an option

  • Save janpaepke/86c1780b49d3243a8fb7d7059fc457ff to your computer and use it in GitHub Desktop.

Select an option

Save janpaepke/86c1780b49d3243a8fb7d7059fc457ff to your computer and use it in GitHub Desktop.
useEffect(() => {
const myCallback = () => {
alert('clicked!');
};
window.addEventListener('click', myCallback);
return () => {
window.removeEventListener('click', myCallback);
};
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment