Files
rn-app1/app/(tabs)/recharge.tsx

8 lines
206 B
TypeScript
Raw Normal View History

2025-11-06 16:32:15 +07:00
import { ThemedView } from "@/components/themed-view";
2025-11-11 10:18:34 +07:00
import { Text } from "react-native";
2025-11-06 16:32:15 +07:00
export default function RechargeScreen() {
return (
2025-11-11 10:18:34 +07:00
<ThemedView><Text></Text></ThemedView>
2025-11-06 16:32:15 +07:00
)
}