You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
442 B

  1. import { ActionReducerMap } from '@ngrx/store/src/models';
  2. import * as fromShoppingList from '../shopping-list/ngrx/shopping-list.reducers'
  3. import * as fromAuth from '../auth/ngrx/auth.reducers'
  4. export interface AppState {
  5. shoppingList: fromShoppingList.State,
  6. auth: fromAuth.State
  7. }
  8. export const appReducers: ActionReducerMap<AppState> = {
  9. shoppingList: fromShoppingList.shoppingListReducer,
  10. auth: fromAuth.authReducers
  11. };