Created
May 25, 2020 05:42
-
-
Save Tecayehuatl/7d819c1673fdcd58f75942b31429f067 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { BrowserModule } from '@angular/platform-browser'; | |
import { NgModule } from '@angular/core'; | |
import { StoreDevtoolsModule } from '@ngrx/store-devtools'; | |
import { AppRoutingModule } from './app-routing.module'; | |
import { AppComponent } from './app.component'; | |
import { StoreModule } from '@ngrx/store'; | |
import { reducers, metaReducers } from './store'; | |
@NgModule({ | |
declarations: [AppComponent], | |
imports: [ | |
BrowserModule, | |
AppRoutingModule, | |
StoreModule.forRoot(reducers, { metaReducers }), | |
StoreDevtoolsModule.instrument(), | |
], | |
providers: [], | |
bootstrap: [AppComponent], | |
}) | |
export class AppModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment