Add react native js components
This commit is contained in:
committed by
Jannis Mattheis
parent
c3743cde25
commit
ea20a6418d
16
App.js
Normal file
16
App.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import AuthLoading from './src/AuthLoading'
|
||||
import Messages from './src/Messages'
|
||||
import Login from './src/Login'
|
||||
import { createSwitchNavigator } from 'react-navigation';
|
||||
|
||||
export default createSwitchNavigator({
|
||||
Messages: {
|
||||
screen: Messages,
|
||||
},
|
||||
Login: {
|
||||
screen: Login,
|
||||
},
|
||||
AuthLoading: {
|
||||
screen: AuthLoading
|
||||
},
|
||||
}, {initialRouteName: 'AuthLoading'});
|
||||
Reference in New Issue
Block a user