import React from 'react'; import { Pressable, ScrollView, Text, View } from 'react-native'; import { styles } from '../styles'; export default function TripPicker({ trips, selectedTripId, onChooseTrip }) { return ( {trips.length ? ( trips .slice() .sort((a, b) => b.startDate.localeCompare(a.startDate)) .map((trip) => { const active = selectedTripId === trip.id; return ( onChooseTrip(trip.id)}> {trip.name} {trip.startDate} ); }) ) : ( Create your first trip to start. )} ); }