index.d.mts 462 B

1234567891011
  1. import * as React from "react";
  2. /**
  3. * On the server, React emits a warning when calling `useLayoutEffect`.
  4. * This is because neither `useLayoutEffect` nor `useEffect` run on the server.
  5. * We use this safe version which suppresses the warning by replacing it with a noop on the server.
  6. *
  7. * See: https://reactjs.org/docs/hooks-reference.html#uselayouteffect
  8. */
  9. export const useLayoutEffect: typeof React.useLayoutEffect;
  10. //# sourceMappingURL=index.d.ts.map