1
0

Added material & ngrx

This commit is contained in:
2020-04-10 14:21:41 -04:00
parent 95eb1c4c3c
commit e39baec426
8 changed files with 97 additions and 666 deletions

View File

@@ -1,14 +1,25 @@
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { BrowserModule } from '@angular/platform-browser';
import { EffectsModule } from '@ngrx/effects';
import { NgModule } from '@angular/core';
import { StoreModule } from '@ngrx/store';
import { AppComponent } from './app.component';
import { reducers, metaReducers } from './reducers';
import { CommentCardComponent } from './comment-card/comment-card.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
BrowserModule,
StoreModule.forRoot(reducers, {
metaReducers
}),
EffectsModule.forRoot([]),
BrowserAnimationsModule,
MatToolbarModule
],
providers: [],
bootstrap: [AppComponent]