diff options
Diffstat (limited to 'src/actions/follow.js')
-rw-r--r-- | src/actions/follow.js | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/actions/follow.js b/src/actions/follow.js deleted file mode 100644 index 708cd95..0000000 --- a/src/actions/follow.js +++ /dev/null @@ -1,29 +0,0 @@ -import actions from 'actions'; - -const enable = (newTab) => { - return { - type: actions.FOLLOW_ENABLE, - newTab, - }; -}; - -const disable = () => { - return { - type: actions.FOLLOW_DISABLE, - }; -}; - -const keyPress = (key) => { - return { - type: actions.FOLLOW_KEY_PRESS, - key: key - }; -}; - -const backspace = () => { - return { - type: actions.FOLLOW_BACKSPACE, - }; -}; - -export { enable, disable, keyPress, backspace }; |