10 lines
133 B
TypeScript
10 lines
133 B
TypeScript
import { Text } from "react-native";
|
|
|
|
export default function AdminMaps() {
|
|
return (
|
|
<>
|
|
<Text>Maps</Text>
|
|
</>
|
|
);
|
|
}
|