rsnext/examples/with-redux-wrapper/store/count/action.js
2020-05-18 15:24:37 -04:00

7 lines
149 B
JavaScript

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