This commit is contained in:
Peace
2025-09-01 21:44:18 +09:00
parent 227c778c46
commit 84ee08acba
14 changed files with 945 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
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>
);
}