changePasswordPage.tsx 378 B

12345678910111213
  1. import { View, Text } from 'react-native';
  2. import React from 'react';
  3. import ChangePasswordPageComponent from '../../../../component/accountPages/changePasswordPageComponent';
  4. const ChangePasswordPage = () => {
  5. return (
  6. <View className="flex-1">
  7. <ChangePasswordPageComponent />
  8. </View>
  9. );
  10. };
  11. export default ChangePasswordPage;