aboutsummaryrefslogtreecommitdiff
path: root/src/screens/Registration.tsx
diff options
context:
space:
mode:
authorLeon Jiang <35908040+leonyjiang@users.noreply.github.com>2020-06-25 16:28:00 -0700
committerLeon Jiang <35908040+leonyjiang@users.noreply.github.com>2020-06-25 16:28:00 -0700
commitbc8184b1a402af0c3e54edb79b38ed8e09a6798d (patch)
tree2ac23485a81086ab4e5df2989e2002c7e67cd56a /src/screens/Registration.tsx
parent36a6781faad4380e7c401f32506707c0e48a15f5 (diff)
cleanup file structure, add react-navigation & basic routes
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;