mirror of
https://github.com/coleam00/bolt.new-any-llm
synced 2024-12-27 06:12:07 +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 />);
|
|
});
|