forked from umijs/qiankun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
38 lines (33 loc) · 947 Bytes
/
index.js
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
32
33
34
35
36
37
38
/**
* @author Kuitos
* @since 2019-05-16
*/
import './public-path';
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import 'antd/dist/antd.min.css';
import './index.css';
export async function bootstrap() {
console.log('[react15] react app bootstraped');
}
export async function mount(props = {}) {
console.log('[react15] props from main framework', props);
const { container } = props;
ReactDOM.render(
<App />,
container ? container.querySelector('#react15Root') : document.getElementById('react15Root'),
);
import('./dynamic.css').then(() => {
console.log('[react15] dynamic style load');
});
}
export async function unmount(props) {
const { container } = props;
ReactDOM.unmountComponentAtNode(
container ? container.querySelector('#react15Root') : document.getElementById('react15Root'),
);
}
if (!window.__POWERED_BY_QIANKUN__) {
bootstrap().then(mount);
}