aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/find.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/reducers/find.js')
-rw-r--r--src/content/reducers/find.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/content/reducers/find.js b/src/content/reducers/find.js
deleted file mode 100644
index 4560e2c..0000000
--- a/src/content/reducers/find.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import actions from 'content/actions';
-
-const defaultState = {
- keyword: null,
- found: false,
-};
-
-export default function reducer(state = defaultState, action = {}) {
- switch (action.type) {
- case actions.FIND_SET_KEYWORD:
- return { ...state,
- keyword: action.keyword,
- found: action.found, };
- default:
- return state;
- }
-}