diff options
Diffstat (limited to 'mobile/components/FormPage.js')
| -rw-r--r-- | mobile/components/FormPage.js | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/mobile/components/FormPage.js b/mobile/components/FormPage.js index 9ea3dce..5fa4abb 100644 --- a/mobile/components/FormPage.js +++ b/mobile/components/FormPage.js @@ -4,17 +4,17 @@ 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> - ); - } + render() { + return ( + <View marginTop = {50}> + <Text> + Put the form stuff here + </Text> + <Button + onPress={() => this.props.navigation.navigate('GreetingPage')} + title='Go Back' + /> + </View> + ); + } } |
