main
js 12 lines 259 Bytes
Raw
1 import React from 'react';
2 import {hydrateRoot} from 'react-dom/client';
3
4 import App from './components/App.js';
5
6 hydrateRoot(
7 document,
8 <App
9 assets={window.assetManifest}
10 initialURL={document.location.pathname + document.location.search}
11 />
12 );