mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
12 lines
250 B
JavaScript
12 lines
250 B
JavaScript
/**
|
|
* @file entry of this example.
|
|
* @author liaoxuezhi@cloud.com
|
|
*/
|
|
import React from 'react';
|
|
import {render} from 'react-dom';
|
|
import App from './components/App';
|
|
|
|
export function bootstrap(mountTo, initalState) {
|
|
render(<App />, mountTo);
|
|
}
|