aboutsummaryrefslogtreecommitdiff
path: root/mobile/components/FormPage.js
diff options
context:
space:
mode:
authorivanshen <iwshen11@gmail.com>2019-03-05 04:12:16 +0000
committerivanshen <iwshen11@gmail.com>2019-03-05 04:12:16 +0000
commit786d0aacd27f27875568c7a89d9e1df918fadbf3 (patch)
treee313a040f1a44d8a3f7cfb51736f295b94d76df6 /mobile/components/FormPage.js
parentc16d2af861f4ed452b2b43f087290f5c0889c34d (diff)
parent18cfcf14ea982d3277d819b88b0dd4df96da40d0 (diff)
Merge branch 'qa' of github.com:csc301-winter-2019/project-team-02 into qa
Diffstat (limited to 'mobile/components/FormPage.js')
-rw-r--r--mobile/components/FormPage.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/mobile/components/FormPage.js b/mobile/components/FormPage.js
new file mode 100644
index 0000000..9ea3dce
--- /dev/null
+++ b/mobile/components/FormPage.js
@@ -0,0 +1,20 @@
+import React, { Component } from 'react';
+import { Text, View, Alert, StyleSheet, Button, AppRegistry, Navigator, TouchableHighlight} from 'react-native';
+import { Ionicons } from '@expo/vector-icons';
+import { createStackNavigator, createAppContainer } from 'react-navigation';
+
+export default class FormPage extends Component {
+ render() {
+ return (
+ <View marginTop = {50}>
+ <Text>
+ Put the form stuff here
+ </Text>
+ <Button
+ onPress={() => this.props.navigation.navigate('GreetingPage')}
+ title='Go Back'
+ />
+ </View>
+ );
+ }
+}