govsearch / frontend /entry.client.tsx
Katsuya Oda
Initial commit
5285b72 unverified
raw
history blame
267 Bytes
import { RemixBrowser } from "@remix-run/react"
import { StrictMode, startTransition } from "react"
import { hydrateRoot } from "react-dom/client"
startTransition(() => {
hydrateRoot(
document,
<StrictMode>
<RemixBrowser />
</StrictMode>,
)
})