| 1234567891011121314 |
- import { View, Text, ScrollView, Pressable, Button, Alert } from 'react-native';
- import React, { useContext } from 'react';
- import { SafeAreaView } from 'react-native-safe-area-context';
- import { router } from 'expo-router';
- import UserTermsPageComponent from '../../component/accountPages/userTermsPageComponent';
- const UserTermsPage = () => {
- return (
- <View className="flex-1">
- <UserTermsPageComponent></UserTermsPageComponent>
- </View>
- );
- };
- export default UserTermsPage;
|