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