Генераторы действий (Action Creators)
function setMessage(msg) {
return {
type: actions.SET_MESSAGE,
payload: msg
};
}dispatch(setMessage('Hello'))const dispatchSetMessage = i => dispatch(setMessage(i))
dispatchSetMessage('Hello')Last updated