aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/entry.client.tsx
blob: 2c8e46bd9e54004c84dfdad8386baa19b5b468b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { StrictMode, startTransition, useEffect } from "react";
import { hydrateRoot } from "react-dom/client";

import { RemixBrowser } from "@remix-run/react";

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