10 lines
136 B
TypeScript
10 lines
136 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
export const Map = () => {
|
|
return (
|
|
<View>
|
|
<Text>Map</Text>
|
|
</View>
|
|
);
|
|
};
|