UNPKG

@clayui/shared

Version:
13 lines (12 loc) 240 B
import { useRef } from "react"; function useIsFirstRender() { const isFirstRef = useRef(true); if (isFirstRef.current) { isFirstRef.current = false; return true; } return isFirstRef.current; } export { useIsFirstRender };