mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-15 18:35:55 -07:00
chore: initial public commit
This commit is contained in:
commit
fc9054b78c
250 changed files with 32809 additions and 0 deletions
12
client/app/entry.client.tsx
Normal file
12
client/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