mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
5 lines
155 B
TypeScript
5 lines
155 B
TypeScript
import {useEffect, useLayoutEffect} from "react";
|
|
|
|
export const useIsomorphicLayoutEffect =
|
|
typeof window !== "undefined" ? useLayoutEffect : useEffect;
|