feat: initial bootstrappy stuff

This commit is contained in:
Aarnav Tale
2024-03-25 17:50:58 -04:00
parent 70c42751e3
commit 025cc4f6f1
12 changed files with 6697 additions and 11211 deletions
+10 -10
View File
@@ -4,15 +4,15 @@
* For more information, see https://remix.run/file-conventions/entry.client
*/
import { RemixBrowser } from "@remix-run/react";
import { startTransition, StrictMode } from "react";
import { hydrateRoot } from "react-dom/client";
import { RemixBrowser } from '@remix-run/react'
import { startTransition, StrictMode } from 'react'
import { hydrateRoot } from 'react-dom/client'
startTransition(() => {
hydrateRoot(
document,
<StrictMode>
<RemixBrowser />
</StrictMode>
);
});
hydrateRoot(
document,
<StrictMode>
<RemixBrowser/>
</StrictMode>
)
})