Files
toir-light-v10/frontend/src/resources/equipment/EquipmentCreate.tsx
2026-04-22 11:24:49 +00:00

20 lines
639 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Create, SimpleForm, TextInput, DateInput, SelectInput } from 'react-admin';
const statusChoices = [
{ 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={statusChoices} />
</SimpleForm>
</Create>
);