Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Created August 20, 2018 17:37
Show Gist options
  • Save onmyway133/095c0a6bd5942a78a8fa9856ae92414a to your computer and use it in GitHub Desktop.
Save onmyway133/095c0a6bd5942a78a8fa9856ae92414a to your computer and use it in GitHub Desktop.
import { createBottomTabNavigator } from 'react-navigation'
import ProfilePage from '../profile/ProfilePage'
import ShopPage from '../shop/ShopPage'
export const MainNavigator = createBottomTabNavigator({
Profile: {
screen: ProfilePage,
navigationOptions: {
tabBarLabel: 'Profile'
}
},
Shop: {
screen: ShopPage,
navigationOptions: {
tabBarLabel: 'Shop'
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment