aboutsummaryrefslogtreecommitdiff
path: root/src/screens/Registration.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens/Registration.tsx')
-rw-r--r--src/screens/Registration.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/screens/Registration.tsx b/src/screens/Registration.tsx
new file mode 100644
index 00000000..44658591
--- /dev/null
+++ b/src/screens/Registration.tsx
@@ -0,0 +1,14 @@
+import React from 'react';
+import {View, Text} from 'react-native';
+
+interface RegistrationProps {}
+
+const Registration: React.FC<RegistrationProps> = ({}) => {
+ return (
+ <View style={{flex: 1, alignSelf: 'center', justifyContent: 'center'}}>
+ <Text style={{fontSize: 18}}>Registration sequence begins here!</Text>
+ </View>
+ );
+};
+
+export default Registration;