Files
contentstack-imagevault/remix/app/entry.client.tsx
2024-03-26 13:03:24 +01:00

13 lines
266 B
TypeScript

import { RemixBrowser } from "@remix-run/react"
import { startTransition, StrictMode } from "react"
import { hydrateRoot } from "react-dom/client"
startTransition(() => {
hydrateRoot(
document,
<StrictMode>
<RemixBrowser />
</StrictMode>
)
})