UNPKG

344 BJavaScriptView Raw
1import { useEffect, useLayoutEffect } from "react";
2/**
3 * Swaps `useLayoutEffect` for `useEffect` on the server to avoid React warnings.
4 * NOTE! The effect won't run on the server.
5 */
6export const useIsomorphicLayoutEffect = typeof document !== "undefined" ? useLayoutEffect : useEffect;
7//# sourceMappingURL=useIsomorphicLayoutEffect.js.map
\No newline at end of file