UNPKG

@darwish/hooks-core

Version:

11 lines (10 loc) 280 B
import { useRef } from 'react'; var useFirstMountState = function () { var firstStateRef = useRef(true); if (firstStateRef.current) { firstStateRef.current = false; return true; } return firstStateRef.current; }; export default useFirstMountState;