bolt.diy / packages /bolt /app /entry.client.tsx
Dominic Elm
feat: initial commit
6927c07
raw
history blame
272 Bytes
import { RemixBrowser } from '@remix-run/react';
import { startTransition, StrictMode } from 'react';
import { hydrateRoot } from 'react-dom/client';
startTransition(() => {
hydrateRoot(
document,
<StrictMode>
<RemixBrowser />
</StrictMode>,
);
});