aboutsummaryrefslogtreecommitdiff
path: root/mobile/components/FormPage.js
diff options
context:
space:
mode:
authorKumar Damani <kumar.damani@mail.utoronto.ca>2019-04-23 18:36:36 +0000
committerKumar Damani <kumar.damani@mail.utoronto.ca>2019-04-23 18:36:36 +0000
commit0380ba5ea5c134f3b7c79efae4daa1034d405daf (patch)
tree63c8b95e5b88738c7562b2c22766f7c90f01778e /mobile/components/FormPage.js
parent8808175e3aa8ffc4022e58c9f926abfd28ce62c4 (diff)
parent8135fe42bfa36df72c427e8d567aad2182e14372 (diff)
Merge branch 'master' into qa
Diffstat (limited to 'mobile/components/FormPage.js')
-rw-r--r--mobile/components/FormPage.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/mobile/components/FormPage.js b/mobile/components/FormPage.js
deleted file mode 100644
index 9ea3dce..0000000
--- a/mobile/components/FormPage.js
+++ /dev/null
@@ -1,20 +0,0 @@
-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>
- );
- }
-}