| 1234567891011 |
- import { Button, ScrollView, StyleSheet } from 'react-native';
- import { View, Text } from 'react-native';
- import AccountMainPageComponent from '../../../../component/accountPages/accountMainPageComponent';
- export default function Account() {
- return (
- <View className="flex-1">
- <AccountMainPageComponent />
- </View>
- );
- }
|