24 lines
439 B
TypeScript
24 lines
439 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { StoreModule, combineReducers, ActionReducer, ActionReducerMap, MetaReducer } from '@ngrx/store';
|
||
|
|
||
|
import { environment } from '../environments/environment';
|
||
|
|
||
|
import {
|
||
|
NgRxStoreModule,
|
||
|
} from '@loafer/ngrx-store';
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
exports: [
|
||
|
StoreModule,
|
||
|
],
|
||
|
imports: [
|
||
|
StoreModule.forRoot({}),
|
||
|
NgRxStoreModule,
|
||
|
],
|
||
|
providers: [
|
||
|
],
|
||
|
|
||
|
})
|
||
|
export class AppStoreModule { }
|