import { Edit, SimpleForm, TextInput, DateInput, SelectInput, ReferenceInput } from 'react-admin'; const equipmentStatusChoices = [ { id: 'Active', name: 'В эксплуатации' }, { id: 'Repair', name: 'В ремонте' }, { id: 'Reserve', name: 'В резерве' }, { id: 'WriteOff', name: 'Списано' }, ]; export const ChangeEquipmentStatusEdit = () => ( );