import { RemixBrowser } from "@remix-run/react" import { StrictMode, startTransition } from "react" import { hydrateRoot } from "react-dom/client" import { ChakraProvider } from "./components/chakra-provider" import { ClientCacheProvider } from "./emotion/emotion-client" const hydrate = () => { startTransition(() => { hydrateRoot( document, , ) }) } if (typeof requestIdleCallback === "function") { requestIdleCallback(hydrate) } else { // Safari doesn't support requestIdleCallback // https://caniuse.com/requestidlecallback setTimeout(hydrate, 1) }