| 6 | import { PackagesMeta } from "./PackagesMeta" |
| 7 | |
| 8 | interface DriverListProps { |
| 9 | trip: TripPreview | null; |
| 10 | onPackageSelect: (fare: RouteFare) => void |
| 11 | onCancel: () => void |
| 12 | } |
| 13 | |
| 14 | |
| 15 | export function DriverList({ trip, onPackageSelect, onCancel }: DriverListProps) { |
nothing calls this directly
no outgoing calls
no test coverage detected