// Muncher component actions and action creators. export const MUNCHER_ACTION = 'MUNCHER_ACTION'; export const LEFT = 'LEFT'; export const RIGHT = 'RIGHT'; export const UP = 'UP'; export const DOWN = 'DOWN'; export const MUNCH = 'MUNCH'; export const moveLeft = () => ({ type: MUNCHER_ACTION, action: LEFT }); export const moveRight = () => ({ type: MUNCHER_ACTION, action: RIGHT }); export const moveUp = () => ({ type: MUNCHER_ACTION, action: UP }); export const moveDown = () => ({ type: MUNCHER_ACTION, action: DOWN }); export const munch = () => ({ type: MUNCHER_ACTION, action: MUNCH });