blob: 9203259477998884c268cd2cb460de7ff00ddef0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import React from 'react';
import {RootStackParamList} from '../routes';
import {RouteProp} from '@react-navigation/native';
import {StackNavigationProp} from '@react-navigation/stack';
import {Background, CenteredView} from '../components';
import {Text} from 'react-native-animatable';
type LoginScreenRouteProp = RouteProp<RootStackParamList, 'Login'>;
type LoginScreenNavigationProp = StackNavigationProp<
RootStackParamList,
'Login'
>;
interface VerificationProps {
route: LoginScreenRouteProp;
navigation: LoginScreenNavigationProp;
}
const Verification: React.FC<VerificationProps> = ({}) => {
return (
<Background>
<CenteredView>
<Text>Verification!</Text>
</CenteredView>
</Background>
);
};
export default Verification;
|