bolt.new-any-llm/app/entry.client.tsx

8 lines
234 B
TypeScript
Raw Permalink Normal View History

2024-07-10 16:44:39 +00:00
import { RemixBrowser } from '@remix-run/react';
import { startTransition } from 'react';
2024-07-10 16:44:39 +00:00
import { hydrateRoot } from 'react-dom/client';
startTransition(() => {
hydrateRoot(document.getElementById('root')!, <RemixBrowser />);
2024-07-10 16:44:39 +00:00
});