Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created June 18, 2016 05:17
Show Gist options
  • Save dabit3/4496adb1919023da781e180ed6fc47e6 to your computer and use it in GitHub Desktop.
Save dabit3/4496adb1919023da781e180ed6fc47e6 to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 3 - tabsRootContainer.js
import { connect } from 'react-redux'
import TabsRoot from '../components/TabsRoot'
import { changeTab } from '../actions/navActions'
function mapStateToProps (state) {
return {
tabs: state.tabReducer
}
}
export default connect(
mapStateToProps,
{
changeTab: (route) => changeTab(route)
}
)(TabsRoot)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment