Skip to content

Instantly share code, notes, and snippets.

@MikeRyanDev
Created January 14, 2016 00:53
Show Gist options
  • Save MikeRyanDev/2eed4d161a89d6379b2e to your computer and use it in GitHub Desktop.
Save MikeRyanDev/2eed4d161a89d6379b2e to your computer and use it in GitHub Desktop.
import {Reducer, Store, createStore} from 'redux';
import {provide} from 'angular2/core';
provide(Reducer, { useValue: function appReducer(){ } });
provide(Store, {
deps: [Reducer],
useFactory: createStore
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment