aboutsummaryrefslogtreecommitdiff
path: root/mobile/components/FormPage.js
blob: 5fa4abbc0a3115a8afb168c0534a3fe0dba6992e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>
    );
  }
}