import React from 'react'; 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 './SelectField.css'; const SelectField = ({ input, label, options, value }) => { const id = label + '-select-field'; const labelId = id + '-label'; return ( {label} ); }; export default SelectField;