Skip to content

Instantly share code, notes, and snippets.

@roelofjan-elsinga
Created July 2, 2018 18:32
Show Gist options
  • Save roelofjan-elsinga/ee2c38601fb2d6b4cad5a9e6156ab4d6 to your computer and use it in GitHub Desktop.
Save roelofjan-elsinga/ee2c38601fb2d6b4cad5a9e6156ab4d6 to your computer and use it in GitHub Desktop.
Initialize ng-redux in AngularJS with an existing store
import * as angular from 'angular';
import ngRedux from 'ng-redux';
import {store} from "../../app/redux";
angular.module('config.redux', [ngRedux])
.config(['$ngReduxProvider', $ngReduxProvider => {
$ngReduxProvider.provideStore(store);
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment