bolt.diy / app /entry.client.tsx
Sam Denty
fix: remove monorepo
6fb59d2 unverified
raw
history blame
210 Bytes
import { RemixBrowser } from '@remix-run/react';
import { startTransition } from 'react';
import { hydrateRoot } from 'react-dom/client';
startTransition(() => {
hydrateRoot(document, <RemixBrowser />);
});