Actions
export const myAction = (context) => {
}import * as actions from './actions'
export const config = {
actions
}Using the context
export const myAction = ({ state, effects, actions }) => {
}Passing values
export const myAction = ({ state, effects, actions }, value) => {
}Organizing actions
Namespace
Underscore
Summary
Last updated