UNPKG

react-instantsearch-core

Version:
8 lines (7 loc) 285 B
import { 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 declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;