diff options
| author | AndrewMihai <41450954+AndrewMihai@users.noreply.github.com> | 2019-03-05 00:05:35 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-05 00:05:35 +0000 |
| commit | 18cfcf14ea982d3277d819b88b0dd4df96da40d0 (patch) | |
| tree | 30c43573bff96c92d8c6c2b6c212a344d89fb96a /mobile/components/FormPage.js | |
| parent | 4c0c485c37eaa5dda07c31947d4d11e18448f943 (diff) | |
| parent | 9438381045c142d38bd1aa28c307723fdb016e4a (diff) | |
Merge pull request #13 from csc301-winter-2019/feat/5
Feat/5
Diffstat (limited to 'mobile/components/FormPage.js')
| -rw-r--r-- | mobile/components/FormPage.js | 20 |
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> + ); + } +} |
