accountMainPage.tsx 356 B

1234567891011
  1. import { Button, ScrollView, StyleSheet } from 'react-native';
  2. import { View, Text } from 'react-native';
  3. import AccountMainPageComponent from '../../../../component/accountPages/accountMainPageComponent';
  4. export default function Account() {
  5. return (
  6. <View className="flex-1">
  7. <AccountMainPageComponent />
  8. </View>
  9. );
  10. }