({ plate }: { plate: string })
| 6 | if (!driver) return null; |
| 7 | |
| 8 | const CarPlate = ({ plate }: { plate: string }) => ( |
| 9 | <span className="inline-flex items-center px-2.5 py-0.5 rounded-md text-sm font-medium bg-gray-100 text-gray-800 font-mono tracking-wider"> |
| 10 | {plate.toUpperCase()} |
| 11 | </span> |
| 12 | ); |
| 13 | |
| 14 | return ( |
| 15 | <Card className=""> |
nothing calls this directly
no outgoing calls
no test coverage detected