Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GuillaumeDaviid/eb4431be8a01e96ed8dd1e8ea105820e to your computer and use it in GitHub Desktop.
Save GuillaumeDaviid/eb4431be8a01e96ed8dd1e8ea105820e to your computer and use it in GitHub Desktop.
useEffect 5
useEffect(() => {
window.addEventListener("mouseup", handleMouseUp);
return () => {
window.removeEventListener("mouseup", handleMouseUp);
}
}) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment