Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Created August 20, 2018 17:38
Show Gist options
  • Save onmyway133/2fca0306bc4ea4c433bcb7762a1f73bf to your computer and use it in GitHub Desktop.
Save onmyway133/2fca0306bc4ea4c433bcb7762a1f73bf to your computer and use it in GitHub Desktop.
import { createStackNavigator } from 'react-navigation'
import LoginPage from './LoginPage'
export const LoginNavigator = createStackNavigator({
Login: {
screen: LoginPage,
navigationOptions: {
title: "Login"
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment