mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:09:08 +08:00
22 lines
754 B
TypeScript
22 lines
754 B
TypeScript
import * as React from 'react';
|
||
import {AlertComponent, ToastComponent, ContextMenu} from 'amis';
|
||
// @ts-ignore
|
||
import AMisSchemaEditor from './Editor';
|
||
export default class App extends React.PureComponent {
|
||
render() {
|
||
// 备注: 如果需要改用antd主题,还需要将index.html换成index-antd.html
|
||
const curTheme = 'cxd'; // 默认使用cxd主题
|
||
return (
|
||
<div className="Editor-Demo">
|
||
<div id="headerBar" className="Editor-header">
|
||
<div className="Editor-title">amis 可视化编辑器</div>
|
||
</div>
|
||
<AMisSchemaEditor theme={curTheme} />
|
||
<ToastComponent theme={curTheme} />
|
||
<AlertComponent theme={curTheme} />
|
||
<ContextMenu theme={curTheme} />
|
||
</div>
|
||
);
|
||
}
|
||
}
|