Last active
September 11, 2017 17:54
-
-
Save diego3g/d7ef943328558e542159bb260fffbb3e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/routes.js | |
import { StackNavigator } from 'react-navigation'; | |
import Login from './pages/login'; | |
import Logged from './pages/logged'; | |
export const SignedOutRoutes = StackNavigator({ | |
Login: { | |
screen: Login, | |
navigationOptions: { | |
title: "Entrar" | |
} | |
}, | |
}); | |
export const SignedInRoutes = StackNavigator({ | |
Logged: { | |
screen: Logged, | |
navigationOptions: { | |
title: "Meu perfil" | |
} | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment