aboutsummaryrefslogtreecommitdiff
path: root/mobile/App.js
diff options
context:
space:
mode:
authorAndrew <andrew.mihai@mail.utoronto.ca>2019-03-26 20:29:27 +0000
committerAndrew <andrew.mihai@mail.utoronto.ca>2019-03-26 20:29:27 +0000
commit1dcd5ea52701be36c9e661ddd42c338c9ae4efc7 (patch)
tree9675bb952451aaa8181a7eba4a9a5845e864a48d /mobile/App.js
parent7c98e3c782f3d8da4cc289dce9ecb0a6cfd9b26d (diff)
Map of 6ix appears when you press drop pin
Diffstat (limited to 'mobile/App.js')
-rw-r--r--mobile/App.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/mobile/App.js b/mobile/App.js
index f36b696..703c6eb 100644
--- a/mobile/App.js
+++ b/mobile/App.js
@@ -5,9 +5,10 @@ import { createStackNavigator, createAppContainer } from 'react-navigation';
import GreetingPage from './components/GreetingPage';
import FormPage from './screens/Form1';
+import MapPage from './screens/MapPage';
-const RootStack = createStackNavigator( {GreetingPage: GreetingPage, FormPage: FormPage,},
+const RootStack = createStackNavigator( {GreetingPage: GreetingPage, FormPage: FormPage, MapPage: MapPage},
{headerMode: 'none'})
const App = createAppContainer(RootStack)