Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import {NgModule} from '@angular/core';
  2. import {StoreModule} from '@ngrx/store';
  3. import {EffectsModule} from '@ngrx/effects';
  4.  
  5. const reducers = {
  6. // reducer definitions go here
  7. };
  8.  
  9.  
  10. @NgModule({
  11. imports: [
  12. StoreModule.provideStore(reducers, []),
  13. // Effects definitions go here: ie
  14. // EffectsModule.run(effectClass)
  15. ],
  16. providers: []
  17. })
  18. export class AppStores {
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement