userTermsPage.tsx 513 B

1234567891011121314
  1. import { View, Text, ScrollView, Pressable, Button, Alert } from 'react-native';
  2. import React, { useContext } from 'react';
  3. import { SafeAreaView } from 'react-native-safe-area-context';
  4. import { router } from 'expo-router';
  5. import UserTermsPageComponent from '../../component/accountPages/userTermsPageComponent';
  6. const UserTermsPage = () => {
  7. return (
  8. <View className="flex-1">
  9. <UserTermsPageComponent></UserTermsPageComponent>
  10. </View>
  11. );
  12. };
  13. export default UserTermsPage;