aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/entry.client.tsx
blob: 92d15859fe6ab65bf823ba86689563e47083d34e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { RemixBrowser } from "@remix-run/react";
import { StrictMode, startTransition } from "react";
import { hydrateRoot } from "react-dom/client";

startTransition(() => {
	hydrateRoot(
		document,
		<StrictMode>
			<RemixBrowser />
		</StrictMode>,
	);
});