reactnative_mobilemk/app/(root)/(tabs)/explore.tsx
2025-01-05 11:01:12 +01:00

13 lines
189 B
TypeScript

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