import Form from 'react-bootstrap/Form';
export default function Dropdown() {
const handleChange = (event) => {
console.log(event.target.value);
};
return (
<Form.Select defaultValue="string" onChange={handleChange}>
<option value="1">One</option>
<option value="string">Two</option>
<option value="3">Three</option>
</Form.Select>
);
}