Files
rn-app1/app/withdraw/index.tsx

10 lines
313 B
TypeScript
Raw Normal View History

2025-11-06 16:32:15 +07:00
import { ThemedView } from "@/components/themed-view";
import { Text } from "react-native";
export default function WithdrawScreen() {
return (
<ThemedView style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
<Text style={{ fontSize: 18 }}></Text>
</ThemedView>
);
}