mahaplatform/redux-rubberstamp

View on GitHub
example/src/button/actions.js

Summary

Maintainability
A
0 mins
Test Coverage
import * as actionTypes from './action_types'

export const increase = () => ({
  type: actionTypes.INCREASE
})

export const decrease = () => ({
  type: actionTypes.DECREASE
})