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