Created
April 14, 2023 17:22
-
-
Save NataliaNagaeva/0b7b29d3505f2eaa0d12e568f4067e47 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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