rsnext/examples/with-redux-wrapper/store/count/action.js

8 lines
147 B
JavaScript
Raw Normal View History

export const countActionTypes = {
ADD: 'ADD',
}
export const addCount = () => dispatch => {
return dispatch({ type: countActionTypes.ADD })
}