Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
328 Bytes
import { useRef } from 'react'
import { useIsomorphicLayoutEffect } from './useIsomorphicLayoutEffect'
export const useIsMounted = () => {
const isMounted = useRef(false)
useIsomorphicLayoutEffect(() => {
isMounted.current = true
return () => {
isMounted.current = false
}
}, [])
return isMounted
}