mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +00:00
8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import { RemixBrowser } from '@remix-run/react';
|
|
import { startTransition } from 'react';
|
|
import { hydrateRoot } from 'react-dom/client';
|
|
|
|
startTransition(() => {
|
|
hydrateRoot(document, <RemixBrowser />);
|
|
});
|