| 10 | import { TripEvents, PaymentEventSessionCreatedData } from "../contracts" |
| 11 | |
| 12 | interface TripOverviewProps { |
| 13 | trip: TripPreview | null; |
| 14 | status: TripEvents | null; |
| 15 | assignedDriver?: Driver | null; |
| 16 | paymentSession?: PaymentEventSessionCreatedData | null; |
| 17 | onPackageSelect: (carPackage: RouteFare) => void; |
| 18 | onCancel: () => void; |
| 19 | } |
| 20 | |
| 21 | export const RiderTripOverview = ({ |
| 22 | trip, |
nothing calls this directly
no outgoing calls
no test coverage detected