This repository has been archived on 2024-07-16. You can view files and clone it, but cannot push or open issues or pull requests.
www.local-ip.sh/app/entry.client.tsx

13 lines
261 B
TypeScript
Raw Normal View History

2023-12-11 14:19:17 +00:00
import { RemixBrowser } from "@remix-run/react";
import { startTransition, StrictMode } from "react";
import { hydrateRoot } from "react-dom/client";
startTransition(() => {
2023-12-12 23:15:37 +00:00
hydrateRoot(
document,
<StrictMode>
<RemixBrowser />
</StrictMode>,
);
2023-12-11 14:19:17 +00:00
});