import React from 'react'; import { IcClose } from '../res/icons'; import { useMapGestures } from '../hooks/useMapGestures'; import { useMapStrings } from '../hooks/useMapStrings'; export const GettingAroundPage: React.FC = () => { const { bindBack } = useMapGestures(); const s = useMapStrings(); const items = [ { title: s.getting_around_commute, subtitle: s.getting_around_commute_desc }, { title: s.getting_around_walking, subtitle: s.getting_around_walking_desc }, { title: s.getting_around_transit, subtitle: s.getting_around_transit_desc }, { title: s.getting_around_rideshare, subtitle: s.getting_around_rideshare_desc }, { title: s.getting_around_cycling, subtitle: s.getting_around_cycling_desc }, ]; return (