interface ComboBoxProps { id?: string options: string[] value: string onValueChange: (newValue: string) => void } const ComboBoxInput = ({ id, options, value, onValueChange }: ComboBoxProps) => { const handleChange = (e: React.ChangeEvent) => { onValueChange(e.target.value) } return ( ) } export default ComboBoxInput