Skip to content

Instantly share code, notes, and snippets.

@anteburazer
Created May 12, 2017 07:58
Show Gist options
  • Save anteburazer/098722af38feb48b5b9256d0fbd5b4da to your computer and use it in GitHub Desktop.
Save anteburazer/098722af38feb48b5b9256d0fbd5b4da to your computer and use it in GitHub Desktop.
@NgModule({
declarations: [
AppComponent,
],
imports: [
// Angular core dependencies
BrowserModule,
HttpModule,
// Http service
HttpServiceModule.forRoot(),
DashboardModule,
AuthModule,
AppRoutingModule,
// Store
StoreModule.provideStore(store),
// Effects
EffectsModule.run(DashboardEffects),
EffectsModule.run(AuthEffects)
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment