You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
358 B
13 lines
358 B
import { VStack } from "@/components/ui/vstack";
|
|
import { Text } from "@/components/ui/text";
|
|
import { View } from "react-native";
|
|
|
|
export default function SettingsTab() {
|
|
return (
|
|
<View className="flex-1 p-6 bg-white">
|
|
<VStack className="gap-4">
|
|
<Text className="text-xl font-bold">Settings 탭</Text>
|
|
</VStack>
|
|
</View>
|
|
);
|
|
}
|
|
|