bolt.diy / app /entry.client.tsx
aproli90's picture
Upload 289 files
2e1ab99 verified
raw
history blame contribute delete
234 Bytes
import { RemixBrowser } from '@remix-run/react';
import { startTransition } from 'react';
import { hydrateRoot } from 'react-dom/client';
startTransition(() => {
hydrateRoot(document.getElementById('root')!, <RemixBrowser />);
});