This file contains hidden or 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
//Hook used to determine if it is a component's first mount | |
//Useful to put in useEffect functions that share data calls but not all the same calls | |
import { useRef, useEffect } from 'react' | |
//https://stackoverflow.com/a/56267719/3058839 | |
export const useIsMount = () => { | |
const isMountRef = useRef(true) | |
useEffect(() => { | |
isMountRef.current = false |