Files
rn-app1/app/(tabs)/recharge.tsx
2025-11-11 10:18:34 +07:00

8 lines
206 B
TypeScript

import { ThemedView } from "@/components/themed-view";
import { Text } from "react-native";
export default function RechargeScreen() {
return (
<ThemedView><Text></Text></ThemedView>
)
}