Revize 4da7b143
Přidáno uživatelem Schwobik před téměř 2 roky(ů)
src/stores/store.ts | ||
---|---|---|
3 | 3 |
import itemReducer from "./reducers/itemSlice" |
4 | 4 |
import searchFormReducer from "./reducers/searchFormSlice" |
5 | 5 |
import listViewReducer from "./reducers/listViewSlice" |
6 |
import homePageReducer from "./reducers/homePageSlice" |
|
6 | 7 |
|
7 | 8 |
const store = configureStore({ |
8 | 9 |
reducer: { |
... | ... | |
10 | 11 |
itemViewState: itemReducer, |
11 | 12 |
searchForm: searchFormReducer, |
12 | 13 |
listView: listViewReducer, |
14 |
homePage: homePageReducer, |
|
13 | 15 |
}, |
14 | 16 |
}) |
15 | 17 |
|
Také k dispozici: Unified diff
HomePage connected to new backend endpoint, SearchPage edited to take argument to display inventory content on open
re #10715