blob: 57b0eb188209a2070fc89e3206594f1c4b506b82 (
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
|
import React from 'react';
import {View, Text, StyleSheet} from 'react-native';
interface RegistrationProps {}
const Registration: React.FC<RegistrationProps> = ({}) => {
return (
<View style={styles.view}>
<Text style={styles.text}>Registration sequence begins here!</Text>
</View>
);
};
const styles = StyleSheet.create({
view: {
flex: 1,
alignSelf: 'center',
justifyContent: 'center',
},
text: {
fontSize: 18,
},
});
export default Registration;
|