-
-
Save onmyway133/095c0a6bd5942a78a8fa9856ae92414a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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