UNPKG

@atlaskit/motion

Version:

A set of utilities to apply motion in your application.

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