blob: 5f3c262e7ce79cb1df8878996de2e700deaf310b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import { StrictMode, lazy } from 'react';
import { hydrateRoot } from 'react-dom/client';
import { BrowserRouter } from 'react-router-dom';
import { CookiesProvider } from 'react-cookie';
import './index.css';
const Juick = lazy(() => import('./App'));
function fromBinary(encoded) {
const binary = window.atob(encoded);
const bytes = new Uint8Array(binary.length);
for (let i = 0; i < bytes.length; i++) {
bytes[i] = binary.charCodeAt(i);
}
return String.fromCharCode(...new Uint16Array(bytes.buffer));
}
const props = window.__PROPS__ ? JSON.parse(fromBinary(window.__PROPS__)) : {};
const JuickApp = () => (
<StrictMode>
<CookiesProvider>
<BrowserRouter>
<Juick {...props} />
</BrowserRouter>
</CookiesProvider>
</StrictMode>
);
hydrateRoot(document.getElementById('app'), <JuickApp />);
|