mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
18 lines
446 B
TypeScript
18 lines
446 B
TypeScript
import { Container } from "@/components/container";
|
|
import { Text, View } from "react-native";
|
|
|
|
export default function TabTwo() {
|
|
return (
|
|
<Container>
|
|
<View className="p-6 flex-1 justify-center">
|
|
<Text className="text-2xl font-bold text-foreground text-center mb-4">
|
|
Tab Two
|
|
</Text>
|
|
<Text className="text-foreground text-center">
|
|
This is the second tab of the application.
|
|
</Text>
|
|
</View>
|
|
</Container>
|
|
);
|
|
}
|