import React, { useState } from 'react'; import { Text, View } from 'react-native'; import { PageWrapper, BigText, Input, Button } from '../../components/'; import { styles } from './styles'; const ResetPasswordDeepScreen = () => { const [pass, setPass] = useState(''); const [repPass, setRepPass] = useState(''); //TODO: Add pass checks | add res pass functionality return ( Reset password Minimum length of the password must be equal or greater 8 symbols. Leading and trailing spaces will be ignored setPass(s)} header={'New password'} /> setRepPass(s)} header={'Confirm new password'} /> ); }; export default ResetPasswordDeepScreen;