diff --git a/frontend/src/resources/change-equipment-status/ChangeEquipmentStatusCreate.tsx b/frontend/src/resources/change-equipment-status/ChangeEquipmentStatusCreate.tsx new file mode 100644 index 0000000..95b3a81 --- /dev/null +++ b/frontend/src/resources/change-equipment-status/ChangeEquipmentStatusCreate.tsx @@ -0,0 +1,20 @@ +import { Create, SimpleForm, TextInput, DateInput, SelectInput, ReferenceInput } from 'react-admin'; + +const equipmentStatusChoices = [ + { id: 'Active', name: 'Active' }, + { id: 'Repair', name: 'Repair' }, + { id: 'Reserve', name: 'Reserve' }, + { id: 'WriteOff', name: 'WriteOff' }, +]; + +export const ChangeEquipmentStatusCreate = () => ( + + + + + + + + + +); \ No newline at end of file