feat: add generated code: frontend/src/resources/equipment/EquipmentCreate.tsx

This commit is contained in:
2026-04-13 15:20:49 +00:00
parent 267ddb31f5
commit 008ed015a6

View File

@@ -0,0 +1,20 @@
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 = () => (
<Create>
<SimpleForm>
<TextInput source="name" />
<TextInput source="serialNumber" />
<DateInput source="dateOfInspection" />
<DateInput source="commissionedAt" />
<SelectInput source="status" choices={equipmentStatusChoices} />
</SimpleForm>
</Create>
);