import BottomSheet, { BottomSheetView } from "@gorhom/bottom-sheet"; import { router } from "expo-router"; import { useRef, type PropsWithChildren } from "react"; import { Image, Text, TouchableOpacity, View } from "react-native"; import { GestureHandlerRootView } from "react-native-gesture-handler"; import { icons } from "@/constants"; import { Map } from "./map"; type RideLayoutProps = { title?: string; snapPoints?: string[]; }; export const RideLayout = ({ title = "Go Back", snapPoints, children, }: PropsWithChildren) => { const bottomSheetRef = useRef(null); return ( router.back()}> {title} {children} ); };