import { FormControl, InputLabel, Select, MenuItem } from '@mui/material'; import { getFieldOptions } from '../../utils/options'; import { FieldComponentProps } from '../../types/overrides'; export default function EnumField({ field, value, onChange, disabled }: FieldComponentProps) { const options = getFieldOptions(field); return ( {field.label} ); }