accountMainPage.tsx 528 B

1234567891011121314
  1. import { Button, ScrollView, StyleSheet } from 'react-native';
  2. import { View, Text } from 'react-native';
  3. import { useAuth } from '../../../../context/AuthProvider';
  4. import { useEffect } from 'react';
  5. import { SafeAreaView } from 'react-native-safe-area-context';
  6. import AccountMainPageComponent from '../../../../component/accountPages/accountMainPageComponent';
  7. export default function Account() {
  8. return (
  9. <View className="flex-1">
  10. <AccountMainPageComponent />
  11. </View>
  12. );
  13. }