File size: 337 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import React from 'react';
import { hydrate } from 'react-dom';
import { createApp } from './createApp';
const { App, props } = createApp();
const __APP_INITIAL_STATE__ = window.__APP_INITIAL_STATE__;
delete window.__APP_INITIAL_STATE__;
hydrate(
<App {...props} {...__APP_INITIAL_STATE__} />,
document.getElementById('root')
);
|