UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

8 lines (6 loc) 259 B
import { useEffect, useLayoutEffect } from 'react'; import { canUseDOM } from './util'; /** * Small wrapper around `useLayoutEffect` to get rid of the warning on SSR envs */ export const useIsomorphicLayoutEffect = canUseDOM ? useLayoutEffect : useEffect;