Skip to main content

useIsomorphicLayoutEffect

useIsomorphicLayoutEffect(effect: EffectCallback,deps: DependencyList): void

Accepts a function that contains imperative, possibly effectful code.

Properties

(Mandatory properties are in bold)
PropertiesTypeDescription
effectEffectCallbackImperative function that can return a cleanup function
Additional properties for advanced use cases
PropertiesTypeDescription
depsDependencyListIf present, effect will only activate if the values in the list change.