Skip to content

Instantly share code, notes, and snippets.

@ball6847
Last active September 23, 2017 18:18
Show Gist options
  • Select an option

  • Save ball6847/0b994d8d68fdee251cbb23a3ce1783e4 to your computer and use it in GitHub Desktop.

Select an option

Save ball6847/0b994d8d68fdee251cbb23a3ce1783e4 to your computer and use it in GitHub Desktop.
Snippet for my Medium Article - 20170823
/* @ngInject */
export class MyComponent {
constructor($scope: ng.IScope, $ngRedux: ngRedux.INgRedux) {
const unsubscriber = $ngRedux.connect(state => state.myState)(this);
// disconnect redux on component destroy
$scope.$on('$destroy', unsubscriber);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment