// Repairs.jsx function RepairsPage() { const priorityColor = { 'High': 'red', 'Medium': 'orange', 'Low': 'gray' }; const statusColor = { 'In Progress': 'orange', 'Awaiting Parts': 'yellow', 'Completed': 'green' }; return (
Workshop Repair Tickets
Mechanic-assigned repairs across the fleet
{REPAIR_TICKETS.map(t => ( ))}
TicketMachineIssuePriority MechanicParts / SupplierCostStatus
{t.id}
{t.machine}
{t.issue} {t.priority} {t.mechanic}
{t.parts}
{t.supplier}
{t.cost} {t.status}
Ticket Detail ยท RT-0142
In Progress
{['Low', 'Medium', 'High'].map(p => ( ))}