From eb6ac97b05f10fa910f9582c1d50c4d8a84e6b22 Mon Sep 17 00:00:00 2001 From: Mike Ryan Date: Sat, 17 Jul 2021 19:32:16 -0500 Subject: [PATCH] 04-setting-up-the-store --- libs/shared-state-books/src/lib/state.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libs/shared-state-books/src/lib/state.ts b/libs/shared-state-books/src/lib/state.ts index b6178d5..69134d4 100644 --- a/libs/shared-state-books/src/lib/state.ts +++ b/libs/shared-state-books/src/lib/state.ts @@ -13,9 +13,13 @@ export const FEATURE_KEY = 'shared-books'; /** * State Shape **/ -export interface State {} +export interface State { + books: fromBooks.State; +} -export const reducers: ActionReducerMap = {}; +export const reducers: ActionReducerMap = { + books: fromBooks.reducer, +}; export const metaReducers: MetaReducer[] = [];