UNPKG

@apollo/client

Version:

A fully-featured caching GraphQL client.

9 lines 559 B
import * as React from "rehackt"; import { canUseDOM } from "../../../utilities/index.js"; // use canUseDOM here instead of canUseLayoutEffect because we want to be able // to use useLayoutEffect in our jest tests. useLayoutEffect seems to work fine // in useSuspenseQuery tests, but to honor the original comment about the // warnings for useSyncExternalStore implementation, canUseLayoutEffect is left // alone. export var useIsomorphicLayoutEffect = canUseDOM ? React.useLayoutEffect : React.useEffect; //# sourceMappingURL=useIsomorphicLayoutEffect.js.map