1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import actions from '../actions'; export function keyPress(code, ctrl) { return { type: actions.INPUT_KEY_PRESS, code, ctrl }; } export function clearKeys() { return { type: actions.INPUT_CLEAR_KEYS } }