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