foxact
Version:
React Hooks/Utils done right. For browser, SSR, and React Server Components.
9 lines (6 loc) • 328 B
TypeScript
import { useEffect } from 'react';
/** @see https://foxact.skk.moe/use-isomorphic-layout-effect */
declare const useIsomorphicLayoutEffect: typeof useEffect;
/** @see https://foxact.skk.moe/use-isomorphic-layout-effect */
declare const useLayoutEffect: typeof useEffect;
export { useIsomorphicLayoutEffect, useLayoutEffect };