chore: re-stage entry files

This commit is contained in:
Aarnav Tale
2025-01-06 08:19:32 +05:30
parent 55c832c536
commit 69783f0d05
2 changed files with 83 additions and 0 deletions
+12
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>
);
});