aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/index.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-05-19 09:34:40 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-05-19 09:34:40 +0900
commit4be04628e19392d8da9688d538cc3374e91005d8 (patch)
tree5c2299f6b85bf96dc9df65ddd7c27aef01b0ed69 /src/content/reducers/index.ts
parente0c4182f14f908d13c8c814c7bc2b48a1791f881 (diff)
Remove unused components
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,
-});