I have a react-redux container component that is created within a React Native Navigator component. I want to be able to pass the navigator as a prop to this container component
mapStateToProps and mapDispatchToProps both take ownProps as the second argument.
mapStateToProps
mapDispatchToProps
ownProps
[mapStateToProps(state, [ownProps]): stateProps] (Function): [mapDispatchToProps(dispatch, [ownProps]): dispatchProps] (Object or Function):
For reference