Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
329 Bytes
import { useEffect, useLayoutEffect } from 'react';
/**
* `useLayoutEffect` that doesn't show a warning when server-side rendering.
*
* It uses `useEffect` on the server (no-op), and `useLayoutEffect` on the browser.
*/
export const useIsomorphicLayoutEffect =
typeof window !== 'undefined' ? useLayoutEffect : useEffect;