aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/reducers/index.ts')
-rw-r--r--src/content/reducers/index.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/content/reducers/index.ts b/src/content/reducers/index.ts
deleted file mode 100644
index 812a404..0000000
--- a/src/content/reducers/index.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-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,
-});