UNPKG

@atlaskit/portal

Version:

A wrapper for rendering components in React portals.

6 lines (5 loc) 245 B
import { useEffect, useLayoutEffect } from 'react'; /** * Needed to supress the SSR warning when running use layout effect on the server. */ export const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;