import React from 'react'; import FormControl from '@mui/material/FormControl'; import InputLabel from '@mui/material/InputLabel'; import OutlinedInput from '@mui/material/OutlinedInput'; import Select from '@mui/material/Select'; const MenuProps = { PaperProps: { style: { width: 250, }, }, }; export default function Component(props) { return ( {props.label} ); } Component.defaultProps = { label: '', value: [], onChange: function (event) {}, };