Skip to content

Instantly share code, notes, and snippets.

@NataliaNagaeva
Created April 14, 2023 17:22
Show Gist options
  • Save NataliaNagaeva/0b7b29d3505f2eaa0d12e568f4067e47 to your computer and use it in GitHub Desktop.
Save NataliaNagaeva/0b7b29d3505f2eaa0d12e568f4067e47 to your computer and use it in GitHub Desktop.
import { useRef } from 'react';
function useIsMounted() {
const isMounted = useRef(false);
useEffect(() => {
isMounted.current = true;
return () => {
isMounted.current = false;
}
}, []);
return isMounted;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment