mirror of
https://github.com/ershisan99/vacancies-trends-front.git
synced 2025-12-16 12:34:06 +00:00
13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
import {startTransition, StrictMode} from 'react'
|
|
import {hydrateRoot} from 'react-dom/client'
|
|
import {RemixBrowser} from '@remix-run/react'
|
|
|
|
|
|
startTransition(() => {
|
|
hydrateRoot(
|
|
document,
|
|
<StrictMode>
|
|
<RemixBrowser />
|
|
</StrictMode>
|
|
)
|
|
}) |