UNPKG

@wordpress/components

Version:
10 lines (9 loc) 373 B
/** * WordPress dependencies */ import { useEffect, useLayoutEffect } from '@wordpress/element'; /** * Copied from `@wordpress/compose` in order for us to be able to maintain all the types for the ui folder */ export const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect; //# sourceMappingURL=use-isomorphic-layout-effect.js.map