import {Select} from 'antd' const { Option } = Select interface StandardComponentProps { dictionary: Map, } export const SelectFromDictionary = ({dictionary, ...other}: StandardComponentProps) =>{ const options: any[] = [] dictionary.forEach((value, key) => { options.push( ) }) return }