message_actions.js 173 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import { SAVE_MESSAGE, } from './types'; export function saveMessage(dataToSubmit) { return { type: SAVE_MESSAGE, payload: dataToSubmit } }