@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
7 lines (5 loc) • 304 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;