diff options
| author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-07 21:16:47 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-07 21:16:47 +0900 |
| commit | 05ef6a8ca35aaa801c11eb6b4896caa3690058af (patch) | |
| tree | 2c7708ca91ac2b462cc86aa28612e3d3943496f3 /src/content/reducers/input.js | |
| parent | 457d954e08923b4accd28a919c72d0b61db1bb98 (diff) | |
| parent | 27d0a7f37d24a0ad68a8ccb7dee18fc1d00eea58 (diff) | |
Merge pull request #578 from ueokande/move-to-typescript
Move to TypeScript
Diffstat (limited to 'src/content/reducers/input.js')
| -rw-r--r-- | src/content/reducers/input.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/content/reducers/input.js b/src/content/reducers/input.js deleted file mode 100644 index 23e7dd2..0000000 --- a/src/content/reducers/input.js +++ /dev/null @@ -1,18 +0,0 @@ -import actions from 'content/actions'; - -const defaultState = { - keys: [] -}; - -export default function reducer(state = defaultState, action = {}) { - switch (action.type) { - case actions.INPUT_KEY_PRESS: - return { ...state, - keys: state.keys.concat([action.key]), }; - case actions.INPUT_CLEAR_KEYS: - return { ...state, - keys: [], }; - default: - return state; - } -} |
