aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/addon.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/reducers/addon.js')
-rw-r--r--src/content/reducers/addon.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/content/reducers/addon.js b/src/content/reducers/addon.js
deleted file mode 100644
index 0def55a..0000000
--- a/src/content/reducers/addon.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import actions from 'content/actions';
-
-const defaultState = {
- enabled: true,
-};
-
-export default function reducer(state = defaultState, action = {}) {
- switch (action.type) {
- case actions.ADDON_SET_ENABLED:
- return { ...state,
- enabled: action.enabled, };
- default:
- return state;
- }
-}