export const MESSAGE_ACTION = 'MESSAGE_ACTION'; export const SHOW = 'SHOW'; export const HIDE = 'HIDE'; export const EXCLAIM = 'EXCLAIM'; export const show = (message) => ({ type: MESSAGE_ACTION, action: SHOW, message: message }); export const exclaim = () => ({ type: MESSAGE_ACTION, action: EXCLAIM }); export const hide = () => ({ type: MESSAGE_ACTION, action: HIDE });