import * as React from 'react'; import { Tabs, Collapse } from 'antd'; /** 选择场景文件时显示的场景属性 */ export class SceneProperty extends React.Component{ constructor() { super(); this.state = { propertys: [] }; } render() { const {componentsNums} = this.state; const TabPane = Tabs.TabPane; const options: any[] = []; return (
{this.state.propertys}
) } }