9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
export default function Maps() {
|
|
return (
|
|
<View>
|
|
<Text>Maps</Text>
|
|
</View>
|
|
)
|
|
} |