emanuelelongo/redux-reduced

View on GitHub
example/actions/decrement.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function(value) {
    return (dispatch) => {
        dispatch({
            type: 'DECREMENT',
            payload: value
        })
    }
}