graycoreio/daffodil

View on GitHub
libs/geography/state/src/reducers/geography-reducers.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ActionReducerMap } from '@ngrx/store';

import { daffCountryEntitiesReducer } from './country-entities/country-entities.reducer';
import { daffGeographyReducer } from './geography/geography.reducer';
import { DaffGeographyFeatureState } from './geography-reducers-state.interface';

export const daffGeographyReducers: ActionReducerMap<DaffGeographyFeatureState> = {
  geography: daffGeographyReducer,
  countries: daffCountryEntitiesReducer,
};