6 lines
215 B
TypeScript
6 lines
215 B
TypeScript
|
|
import { useEffect, useLayoutEffect } from "react";
|
||
|
|
|
||
|
|
const isSSR = typeof window === "undefined" || /ServerSideRendering/.test(navigator && navigator.userAgent);
|
||
|
|
|
||
|
|
export default isSSR ? useEffect : useLayoutEffect;
|