UNPKG

beautiful-react-hooks

Version:

A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development

11 lines (10 loc) 286 B
import { useRef } from 'react'; const useIsFirstRender = () => { const isFirstRenderRef = useRef(true); if (isFirstRenderRef.current) { isFirstRenderRef.current = false; return true; } return isFirstRenderRef.current; }; export default useIsFirstRender;