Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions libs/shared-state-books/src/lib/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<State> = {};
export const reducers: ActionReducerMap<State> = {
books: fromBooks.reducer,
};

export const metaReducers: MetaReducer<State>[] = [];

Expand Down