diff options
| author | Ivan Shen <iwshen11@gmail.com> | 2019-03-28 19:38:23 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-28 19:38:23 +0000 |
| commit | 143891d8467bf80209255fd55da1739625583858 (patch) | |
| tree | 568e5fa7c38757ec64943aa4f37143728cba6eb7 /mobile/App.js | |
| parent | a4de620727d4e7d294ced1d1e1c956c0be8c0cd2 (diff) | |
| parent | 3dd064805b0c4930886a99dccc9d4d980e8c15e0 (diff) | |
Merge branch 'qa' into feat/28
Diffstat (limited to 'mobile/App.js')
| -rw-r--r-- | mobile/App.js | 3 |
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) |
