mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-19 07:42:43 +00:00
15 lines
291 B
TypeScript
15 lines
291 B
TypeScript
import { StrictMode, startTransition, useEffect } from "react";
|
|
import { hydrateRoot } from "react-dom/client";
|
|
|
|
import { RemixBrowser } from "@remix-run/react";
|
|
|
|
startTransition(() => {
|
|
hydrateRoot(
|
|
document,
|
|
// <StrictMode>
|
|
<>
|
|
<RemixBrowser />
|
|
</>,
|
|
// </StrictMode>,
|
|
);
|
|
});
|