import Dropdown from "react-bootstrap/Dropdown"; import DropdownButton from "react-bootstrap/DropdownButton"; const SelectDropdown = (props) => { const { titleText, dropDownOptions, handleSelect, className } = props; return ( {dropDownOptions?.map((option, i) => ( handleSelect(`${option.value}`)}> {`${option.label}`} ))} ); }; export default SelectDropdown;