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.
14 lines
447 B
14 lines
447 B
import { VStack } from "@/components/ui/vstack";
|
|
import { Text } from "@/components/ui/text";
|
|
import { View } from "react-native";
|
|
|
|
export default function HistoryTab() {
|
|
return (
|
|
<View className="flex-1 p-6 bg-white">
|
|
<VStack className="gap-4">
|
|
<Text className="text-xl font-bold">History 탭</Text>
|
|
<Text className="text-gray-600">최근 기록이 여기에 표시됩니다.</Text>
|
|
</VStack>
|
|
</View>
|
|
);
|
|
}
|
|
|