Files
waseel/components/map.tsx
T

10 lines
136 B
TypeScript

import { Text, View } from "react-native";
export const Map = () => {
return (
<View>
<Text>Map</Text>
</View>
);
};