0
0
llucycodes42
Here, the code imports the StoreModule, the EffectsModule, and the StoreDevtoolsModule. The store module is then exported. The environment variable is an array of modules that the application should load. The production environment loads the StoreDevtoolsModule.
Library: angular
Shortcut: a_ngrx_store_module
import { NgModule } from '@angular/core';
import { EffectsModule } from '@ngrx/effects';
import { StoreModule } from '@ngrx/store';
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
import { environment } from '../../environments/environment';
@NgModule({
imports: [
StoreModule.forRoot({}),
EffectsModule.forRoot([]),
environment.production ? [] : StoreDevtoolsModule.instrument()
]
})
export class StoreModule {}