aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/reducers.ts
blob: 254fe762ecea70b6b17f36239c4d0bde828b8aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { combineReducers } from 'redux';
import search, { State as SearchState } from './reducers/search';

export interface State {
  search: SearchState,
}

const rootReducer = combineReducers<State>({
  search,
});

export default rootReducer;