react-code-dataset / react-use /src /useFirstMountState.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
219 Bytes
import { useRef } from 'react';
export function useFirstMountState(): boolean {
const isFirst = useRef(true);
if (isFirst.current) {
isFirst.current = false;
return true;
}
return isFirst.current;
}