import FormControl from '@mui/material/FormControl' import InputLabel from '@mui/material/InputLabel' import MenuItem from '@mui/material/MenuItem' import Select from '@mui/material/Select' import classnames from 'classnames' import React from 'react' const Dropdown = ({ label, name, options, onChange, value, className }) => { return ( {label} ) } export default Dropdown