1
0

Support for loading, deleting, tag joining, and

This commit is contained in:
2020-04-10 17:40:02 -04:00
parent ebae5a5801
commit a55c555138
28 changed files with 484 additions and 9 deletions

View File

@@ -0,0 +1,22 @@
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
import { StoreModule } from '@ngrx/store';
import { EffectsModule } from '@ngrx/effects';
import { commentsFeatureKey, reducer } from './comment.reducer';
import { CommentService } from './comment.service';
import { CommentEffects } from './comment.effects';
import { CommentFacade } from './comment.facade';
@NgModule({
imports: [
HttpClientModule,
StoreModule.forFeature(commentsFeatureKey, reducer),
EffectsModule.forFeature([CommentEffects])
],
providers: [
CommentService,
CommentFacade
]
})
export class CommentStoreModule { }