Skip to content

Instantly share code, notes, and snippets.

@lunaroyster
Last active August 3, 2020 16:21
Show Gist options
  • Save lunaroyster/6665872a665328a59efd5f2f3ae4873e to your computer and use it in GitHub Desktop.
Save lunaroyster/6665872a665328a59efd5f2f3ae4873e to your computer and use it in GitHub Desktop.
const isMounted = React.useRef(false);
React.useEffect(() => {
isMounted.current = true;
return () => {
isMounted.current = false;
};
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment