13 lines
430 B
TypeScript
13 lines
430 B
TypeScript
import Ridelayout from "@/components/RideLayout";
|
|
import { useLocationStore } from "@/store";
|
|
import { Text, View } from "react-native";
|
|
import tw from "twrnc";
|
|
const FindRide=()=>{
|
|
const {userAddress,destinationAddress,setDestinationLocation,setUserLocation,} = useLocationStore();
|
|
return(
|
|
<Ridelayout>
|
|
<Text style={tw`text-2xl`}>Find Ride</Text>
|
|
</Ridelayout>
|
|
)
|
|
}
|
|
export default FindRide; |