chore: re-stage entry files

This commit is contained in:
Aarnav Tale 2025-01-06 08:19:32 +05:30
parent 55c832c536
commit 69783f0d05
No known key found for this signature in database
2 changed files with 83 additions and 0 deletions

12
app/entry.client.tsx Normal file
View file

@ -0,0 +1,12 @@
import { startTransition, StrictMode } from "react";
import { hydrateRoot } from "react-dom/client";
import { HydratedRouter } from "react-router/dom";
startTransition(() => {
hydrateRoot(
document,
<StrictMode>
<HydratedRouter />
</StrictMode>
);
});