use-isomorphic-layout-effect

PreviousNext
Docs
diceuihook

Preview

Loading preview…
hooks/use-isomorphic-layout-effect.ts
import * as React from "react";

const useIsomorphicLayoutEffect =
  typeof window !== "undefined" ? React.useLayoutEffect : React.useEffect;

export { useIsomorphicLayoutEffect };

Installation

npx shadcn@latest add @diceui/use-isomorphic-layout-effect

Usage

import { UseIsomorphicLayoutEffect } from "@/hooks/use-isomorphic-layout-effect"
const value = UseIsomorphicLayoutEffect()