bolt.new/app/entry.client.tsx

8 lines
210 B
TypeScript
Raw 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, <RemixBrowser />);
2024-07-10 16:44:39 +00:00
});