dev / app /entry.client.tsx
Charan5775's picture
Add application file
8f7821c
raw
history blame contribute delete
234 Bytes
import { RemixBrowser } from '@remix-run/react';
import { startTransition } from 'react';
import { hydrateRoot } from 'react-dom/client';
startTransition(() => {
hydrateRoot(document.getElementById('root')!, <RemixBrowser />);
});