import React from "react"; import Dropdown, { Option } from "react-dropdown"; import "react-dropdown/style.css"; const AudioInputsDropdown: React.FC<{ audioDevices: Option[]; disabled: boolean; hide: () => void; deviceId: string; setDeviceId: React.Dispatch>; }> = (props) => { const handleDropdownChange = (option: Option) => { props.setDeviceId(option.value); props.hide(); }; return ( ); }; export default AudioInputsDropdown;