mfe
This commit is contained in:
14
mobile/app/(tabs)/history.tsx
Normal file
14
mobile/app/(tabs)/history.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user