Skip to content

Commit 6982952

Browse files
karptonitebrandonroberts
authored andcommitted
fix(Example): Fix Book State interface parent (#90)
1 parent 2737402 commit 6982952

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example-app/app/books/reducers/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ import {
1212
import * as fromSearch from './search';
1313
import * as fromBooks from './books';
1414
import * as fromCollection from './collection';
15+
import * as fromRoot from '../../reducers';
1516

1617
export interface BooksState {
1718
search: fromSearch.State;
1819
books: fromBooks.State;
1920
collection: fromCollection.State;
2021
}
2122

22-
export interface State extends fromBooks.State {
23+
export interface State extends fromRoot.State {
2324
'books': BooksState;
2425
}
2526

0 commit comments

Comments
 (0)