emanuelelongo/redux-reduced

View on GitHub
example/actions/increment.js

Summary

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