@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
5 lines (4 loc) • 303 B
JavaScript
"use client";
import { useLayoutEffect, useEffect } from "react";
/** useIsomorphicLayoutEffect is the same as useLayoutEffect but falls back to useEffect for SSR */ const useIsomorphicLayoutEffect = typeof window !== "undefined" ? useLayoutEffect : useEffect;
export default useIsomorphicLayoutEffect;