// Repairs.jsx function RepairsPage() { const priorityColor = { 'High': 'red', 'Medium': 'orange', 'Low': 'gray' }; const statusColor = { 'In Progress': 'orange', 'Awaiting Parts': 'yellow', 'Completed': 'green' }; return (
| Ticket | Machine | Issue | Priority | Mechanic | Parts / Supplier | Cost | Status |
|---|---|---|---|---|---|---|---|
| {t.id} |
{t.machine}
|
{t.issue} | {t.priority} | {t.mechanic} |
{t.parts}
{t.supplier}
|
{t.cost} | {t.status} |