Skip to content

Instantly share code, notes, and snippets.

@Tecayehuatl
Created May 25, 2020 04:55
Show Gist options
  • Save Tecayehuatl/ab1199e0c6414ac60a5b8ec988bf73c6 to your computer and use it in GitHub Desktop.
Save Tecayehuatl/ab1199e0c6414ac60a5b8ec988bf73c6 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
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 }),
],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment