bolt.diy / packages /bolt /app /entry.client.tsx
Dominic Elm
feat: add terminal and simple shortcut system (#16)
8486d85 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 />);
});