Files
fltr-app/app/(tabs)/explore.tsx
2025-10-02 09:18:44 +02:00

12 lines
263 B
TypeScript

import styles from "@/app/styles/indexStyles";
import React from "react";
import { Text, View } from "react-native";
export default function TabTwoScreen() {
return (
<View style={styles.mainContainer}>
<Text>Explore Screen</Text>
</View>
);
}