Skip to content

Instantly share code, notes, and snippets.

@0xLDev
Created December 18, 2021 08:49
Show Gist options
  • Save 0xLDev/2936420b6380e6ad94460be95c96294b to your computer and use it in GitHub Desktop.
Save 0xLDev/2936420b6380e6ad94460be95c96294b to your computer and use it in GitHub Desktop.
import { useEffect, useRef } from 'react';
export const useMountedRef = () => {
const isMountedRef = useRef(true);
useEffect(() => {
const beforeUnmount = () => {
isMountedRef.current = false;
};
return beforeUnmount;
}, []);
return isMountedRef;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment