UNPKG

@leafygreen-ui/hooks

Version:
10 lines (7 loc) 288 B
import { useEffect, useLayoutEffect } from 'react'; const useIsomorphicLayoutEffect: typeof useLayoutEffect = (...args) => { const effectHook = typeof window === 'undefined' ? useEffect : useLayoutEffect; return effectHook(...args); }; export default useIsomorphicLayoutEffect;