ForgotPassword.js 232 Bytes
Newer Older
Giang Tran committed
1 2 3 4 5 6 7 8 9 10 11 12
import React, {Component} from 'react';
import {View, Text} from 'react-native';

const ForgotPassWord = (props) => {
  return (
    <View>
      <Text>Forgot password view</Text>
    </View>
  );
};

export default ForgotPassWord;