chore: re-stage entry files
This commit is contained in:
parent
55c832c536
commit
69783f0d05
2 changed files with 83 additions and 0 deletions
12
app/entry.client.tsx
Normal file
12
app/entry.client.tsx
Normal 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>
|
||||
);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue