mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-01-22 19:06:12 +00:00
8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import { RemixBrowser } from '@remix-run/react';
|
|
import { startTransition } from 'react';
|
|
import { hydrateRoot } from 'react-dom/client';
|
|
|
|
startTransition(() => {
|
|
hydrateRoot(document.getElementById('root')!, <RemixBrowser />);
|
|
});
|