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