diff --git a/frontend/src/resources/equipment/EquipmentStatusSelectField.tsx b/frontend/src/resources/equipment/EquipmentStatusSelectField.tsx new file mode 100644 index 0000000..79355b6 --- /dev/null +++ b/frontend/src/resources/equipment/EquipmentStatusSelectField.tsx @@ -0,0 +1,12 @@ +import { SelectField } from 'react-admin'; + +const equipmentStatusChoices = [ + { id: 'Active', name: 'В эксплуатации' }, + { id: 'Repair', name: 'В ремонте' }, + { id: 'Reserve', name: 'В резерве' }, + { id: 'WriteOff', name: 'Списано' }, +]; + +export const EquipmentStatusSelectField = (props: any) => ( + +); \ No newline at end of file