aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/index.ts
blob: 812a404ea2a3faea560039bbc9d82e867ab70c87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { combineReducers } from 'redux';
import input, { State as InputState } from './input';
import followController, { State as FollowControllerState }
  from './follow-controller';
import mark, { State as MarkState } from './mark';

export interface State {
  input: InputState;
  followController: FollowControllerState;
  mark: MarkState;
}

export default combineReducers({
  input, followController, mark,
});