Skip to content

Instantly share code, notes, and snippets.

@izabellewilding
Created July 9, 2020 21:02
Show Gist options
  • Save izabellewilding/8a24acef974b8f4d7795c8623fdedb2f to your computer and use it in GitHub Desktop.
Save izabellewilding/8a24acef974b8f4d7795c8623fdedb2f to your computer and use it in GitHub Desktop.
useEffect(() => {
const handleScroll = () => {
console.log("page was scrolled";
};
window.addEventListener("scroll", handleScroll);
return () => {
window.removeEventListener("scroll", handleScroll);
}
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment