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