UNPKG

264 BJavaScriptView Raw
1import { useEffect, useLayoutEffect } from 'react';
2// suppress the useLayoutEffect warning on server side.
3export const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;
4
5//# sourceMappingURL=useIsomorphicLayoutEffect.js.map
\No newline at end of file