mirror of
https://github.com/harivansh-afk/asap.it.git
synced 2026-04-15 10:05:13 +00:00
7 lines
234 B
TypeScript
7 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 />);
|
|
});
|