12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
import styles from "@/app/tabStyles/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>
|
|
);
|
|
}
|