type optionType = { value: string, displayValue: string }; type prop = { value: optionType, onChange: (selected: optionType) => void options: optionType[] } const InputSelect = ({ value, onChange, options }: prop) => { return