From 3ec166a677ef4637f169dafd67bf6cf53aefb638 Mon Sep 17 00:00:00 2001 From: toir-bot Date: Mon, 13 Apr 2026 18:31:58 +0000 Subject: [PATCH] feat: add generated code: frontend/src/resources/equipment/EquipmentList.tsx --- .../src/resources/equipment/EquipmentList.tsx | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 frontend/src/resources/equipment/EquipmentList.tsx diff --git a/frontend/src/resources/equipment/EquipmentList.tsx b/frontend/src/resources/equipment/EquipmentList.tsx new file mode 100644 index 0000000..4ea6fea --- /dev/null +++ b/frontend/src/resources/equipment/EquipmentList.tsx @@ -0,0 +1,28 @@ +import { List, DataTable, TextField, DateField, EditButton, ShowButton } from 'react-admin'; +import { SelectField } from 'react-admin'; + +const equipmentStatusChoices = [ + { id: 'Active', name: 'Active' }, + { id: 'Repair', name: 'Repair' }, + { id: 'Reserve', name: 'Reserve' }, + { id: 'WriteOff', name: 'WriteOff' }, +]; + +export const EquipmentList = () => ( + + + + + + + + + + + + + + + + +); \ No newline at end of file