first commit

This commit is contained in:
2025-10-19 13:31:11 +00:00
commit 8bfc183b66
1248 changed files with 195992 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { useEffect, useLayoutEffect } from "react";
const isSSR = typeof window === "undefined" || /ServerSideRendering/.test(navigator && navigator.userAgent);
export default isSSR ? useEffect : useLayoutEffect;