Created
August 31, 2018 19:21
-
-
Save ldmarz/410e6343a71ea7b4869e4754feb6eb5b 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
| constructor($ngRedux) { | |
| 'ngInject'; | |
| this.$ngRedux = $ngRedux; | |
| $ngRedux.connect(this.mapStateToThis, actions)(this); | |
| } | |
| mapStateToThis(state) { | |
| return { | |
| currentActive: state.listReducer.currentActive | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment