blob: 43483814b2f458641c2869b20ea49d0e38926a9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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';
import GreetingPage from './components/GreetingPage';
import FormPage from './components/FormPage';
const RootStack = createStackNavigator( {GreetingPage: GreetingPage, FormPage: FormPage,},
{headerMode: 'none'})
const App = createAppContainer(RootStack)
export default App;
|