chore: add fly config & move to npm
This commit is contained in:
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>
|
||||
);
|
||||
});
|
Reference in New Issue
Block a user