Skip to content

Instantly share code, notes, and snippets.

@ldmarz
Created August 31, 2018 19:21
Show Gist options
  • Select an option

  • Save ldmarz/410e6343a71ea7b4869e4754feb6eb5b to your computer and use it in GitHub Desktop.

Select an option

Save ldmarz/410e6343a71ea7b4869e4754feb6eb5b to your computer and use it in GitHub Desktop.
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