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;