Uber_Clone/components/Map.tsx

13 lines
311 B
TypeScript

import { View,Text } from "react-native";
import MapView, { PROVIDER_DEFAULT } from "react-native-maps";
import tw from "twrnc";
const Map = () => {
return(
<MapView provider={PROVIDER_DEFAULT} style={tw`w-full h-full rounded-2xl `} >
<Text>Map</Text>
</MapView>
)
}
export default Map;