Skip to content

Instantly share code, notes, and snippets.

@HigoRibeiro
Created May 30, 2018 13:27
Show Gist options
  • Save HigoRibeiro/fb529eb3e1621ec883ca8c164e7636df to your computer and use it in GitHub Desktop.
Save HigoRibeiro/fb529eb3e1621ec883ca8c164e7636df to your computer and use it in GitHub Desktop.
// src/index.js
import Page1 from './Page1';
import Page2 from './Page2';
import { createBottomTabNavigator } from 'react-navigation';
const TabNavigator = createBottomTabNavigator({
Home: Page1,
About: Page2,
});
export default { TabNavigator };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment