import React from 'react'; import { PropertyType } from '../../Enums/PropertyType'; import { IContainerProperties } from '../../Interfaces/IContainerProperties'; import { ISymbolModel } from '../../Interfaces/ISymbolModel'; import { ContainerForm } from './ContainerForm'; interface IPropertiesProps { properties?: IContainerProperties symbols: Map onChange: (key: string, value: string | number | boolean, type?: PropertyType) => void } export function Properties(props: IPropertiesProps): JSX.Element { if (props.properties === undefined) { return
; } return (
); }