react2angular
react2angular copied to clipboard
How to provide redux store store?
<Provider store={store}><Router>...</Router></Provider>
How to provide store using this npm module? My routing is angularjs.
You can pass in $ngRedux as the store:
react2angular(MyComponent, undefined, ['$ngRedux'])
...
<Provider store={this.props.$ngRedux}>
...
You can pass in $ngRedux as the store:
react2angular(MyComponent, undefined, ['$ngRedux']) ... <Provider store={this.props.$ngRedux}> ...
do we have any working example?