8 lines
206 B
TypeScript
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>
|
|
)
|
|
}
|
|
|