// Message component actions and action creators. export const MESSAGE_ACTION = 'MESSAGE_ACTION'; export const DISPLAY = 'DISPLAY'; export const HIDE = 'HIDE'; export const display = (msg1, msg2, hidden) => ({ type: MESSAGE_ACTION, action: DISPLAY, message1: msg1, message2: msg2, hidden: hidden }); export const hide = () => ({ type: MESSAGE_ACTION, action: HIDE });