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

export interface State {
  search: SearchState,
}

// @ts-ignore
const rootReducer = combineReducers<State>({
  search,
});

export default rootReducer;