13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
import { Platform } from 'react-native'
|
|
import { Navigation } from 'react-native-navigation'
|
|
import { registerScreens } from './screens'
|
|
|
|
registerScreens()
|
|
|
|
Navigation.startSingleScreenApp({
|
|
screen: {
|
|
screen: 'app.Home',
|
|
title: 'Work Item Map',
|
|
}
|
|
})
|