Skip to content

useIsomorphicLayoutEffect

const useIsomorphicLayoutEffect: (effect, deps?) => void

Defined in: packages/react/src/components/ui/datetime/input.tsx:500

useLayoutEffect in browser environments, useEffect on the server to avoid SSR warnings.

Accepts a function that contains imperative, possibly effectful code.

EffectCallback

Imperative function that can return a cleanup function

DependencyList

If present, effect will only activate if the values in the list change.

void

16.8.0

https://react.dev/reference/react/useEffect