aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/setting.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/reducers/setting.js')
-rw-r--r--src/content/reducers/setting.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/content/reducers/setting.js b/src/content/reducers/setting.js
deleted file mode 100644
index a49db6d..0000000
--- a/src/content/reducers/setting.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import actions from 'content/actions';
-
-const defaultState = {
- // keymaps is and arrays of key-binding pairs, which is entries of Map
- keymaps: [],
-};
-
-export default function reducer(state = defaultState, action = {}) {
- switch (action.type) {
- case actions.SETTING_SET:
- return { ...action.value };
- default:
- return state;
- }
-}
-