Skip to content

Instantly share code, notes, and snippets.

@kobvel
Last active October 7, 2017 06:13
Show Gist options
  • Save kobvel/9fb481476c37d1b32c229067f5eb566d to your computer and use it in GitHub Desktop.
Save kobvel/9fb481476c37d1b32c229067f5eb566d to your computer and use it in GitHub Desktop.
import { StoreModule } from '@ngrx/store';
import { storeReducers } from './app.state';
@NgModule({
imports: [
BrowserModule,
RouterModule.forRoot(routes),
StoreModule.forRoot(storeReducers),
AppModule
],
declarations: [AppComponent],
providers: [
ApiService,
],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment