Revize 9c55d3bb
Přidáno uživatelem Schwobik před asi 2 roky(ů)
src/stores/store.ts | ||
---|---|---|
1 | 1 |
import { configureStore } from "@reduxjs/toolkit" |
2 | 2 |
import userReducer from "./reducers/userSlice" |
3 |
import searchFormReducer from "./reducers/searchFormSlice" |
|
4 |
import listViewReducer from "./reducers/listViewSlice" |
|
3 | 5 |
|
4 | 6 |
const store = configureStore({ |
5 | 7 |
reducer: { |
6 | 8 |
user: userReducer, |
9 |
searchForm: searchFormReducer, |
|
10 |
listView: listViewReducer, |
|
7 | 11 |
}, |
8 | 12 |
}) |
9 | 13 |
|
Také k dispozici: Unified diff
SearchPage implementations with base of list view for results of the search
re #10342