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.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/content/reducers/index.ts b/src/content/reducers/index.ts
new file mode 100644
index 0000000..fb5eb84
--- /dev/null
+++ b/src/content/reducers/index.ts
@@ -0,0 +1,21 @@
+import { combineReducers } from 'redux';
+import addon, { State as AddonState } from './addon';
+import find, { State as FindState } from './find';
+import setting, { State as SettingState } from './setting';
+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 {
+ addon: AddonState;
+ find: FindState;
+ setting: SettingState;
+ input: InputState;
+ followController: FollowControllerState;
+ mark: MarkState;
+}
+
+export default combineReducers({
+ addon, find, setting, input, followController, mark,
+});