Update mobile login page

This commit is contained in:
John Lyon-Smith
2018-03-08 12:42:13 -08:00
parent b1c72040c9
commit 0b883de202
21 changed files with 505 additions and 205 deletions

12
mobile/src/app.js Normal file
View File

@@ -0,0 +1,12 @@
import { Platform } from 'react-native'
import { Navigation } from 'react-native-navigation'
import { registerScreens } from './screens'
registerScreens()
Navigation.startSingleScreenApp({
screen: {
screen: 'app.Home',
title: 'Home',
}
})