Actions
// Without Preboiled
const INCREMENT = 'counter/increment'
const DECREMENT = 'counter/decrement'
const MULTIPLY = 'counter/multiply'
const increment = () => ({
type: INCREMENT
})
const decrement = () => ({
type: DECREMENT
})
const multiply = amount => ({
type: MULTIPLY,
payload: amount
})Simple Actions
Payload Actions
Next Steps
Last updated