20 lines
657 B
TypeScript
20 lines
657 B
TypeScript
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>
|
||
); |