diff --git a/frontend/src/resources/equipment/EquipmentShow.tsx b/frontend/src/resources/equipment/EquipmentShow.tsx new file mode 100644 index 0000000..8768e67 --- /dev/null +++ b/frontend/src/resources/equipment/EquipmentShow.tsx @@ -0,0 +1,23 @@ +import { Show, SimpleShowLayout, TextField, DateField, SelectField } from 'react-admin'; + +const equipmentStatusChoices = [ + { id: 'Active', name: 'Active' }, + { id: 'Repair', name: 'Repair' }, + { id: 'Reserve', name: 'Reserve' }, + { id: 'WriteOff', name: 'WriteOff' }, +]; + +export const EquipmentShow = () => ( + + + + + + + + + + + + +); \ No newline at end of file