blob: fb972281a968619a4db5ae4c392f08ae7ef57f8b (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { combineReducers } from 'redux';
import search from './reducers/search';
import view from './reducers/view';
const rootReducer = combineReducers({
search,
view,
});
export default rootReducer;
|