UNPKG

react-dev-inspector

Version:

dev-tool for inspect react components and jump to local IDE for component code.

14 lines (11 loc) 272 B
import { useEffect, useLayoutEffect as _useLayoutEffect, } from 'react' export const useLayoutEffect = ( typeof window !== 'undefined' // @ts-expect-error `window` is not available in SSR && window?.document?.createElement ) ? _useLayoutEffect : useEffect