UNPKG

@gilbarbara/hooks

Version:

Collection of useful React hooks

14 lines (9 loc) 241 B
import { useRef } from 'react'; export function useIsFirstRender(): boolean { const isFirstRender = useRef(true); if (isFirstRender.current) { isFirstRender.current = false; return true; } return isFirstRender.current; }