mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
/**
|
|
* @file entry of this example.
|
|
* @author liaoxuezhi@cloud.com
|
|
*/
|
|
import './polyfills/index';
|
|
import React from 'react';
|
|
import {render} from 'react-dom';
|
|
import App from './components/App';
|
|
|
|
export function bootstrap(mountTo, initalState) {
|
|
render(<App />, mountTo);
|
|
}
|