@react-md/utils
Version:
General utils for react-md.
13 lines • 603 B
JavaScript
import { useEffect, useLayoutEffect } from "react";
/**
* This is copy/pasted from react-redux which has some more information about
* this and how to fix "invalid" warnings while running tests.
*
* @see https://github.com/reduxjs/react-redux/blob/4c907c0870c6b9a136dd69be294c17d1dc63c8f5/src/utils/useIsomorphicLayoutEffect.js
*/
export var useIsomorphicLayoutEffect = typeof window !== "undefined" &&
typeof window.document !== "undefined" &&
typeof window.document.createElement !== "undefined"
? useLayoutEffect
: useEffect;
//# sourceMappingURL=useIsomorphicLayoutEffect.js.map