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