react-transition-preset
Version:
Lightweight, zero-dependency transition component for React with common preset transition
8 lines (5 loc) • 299 B
JavaScript
import { useLayoutEffect, useEffect } from 'react';
// src/hooks/use-isomorphic-layout-effect.ts
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
var useIsomorphicLayoutEffect = isBrowser ? useLayoutEffect : useEffect;
export { useIsomorphicLayoutEffect };