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

8 lines
149 B
JavaScript
Raw Normal View History

export const countActionTypes = {
ADD: 'ADD',
}
2020-05-18 21:24:37 +02:00
export const addCount = () => (dispatch) => {
return dispatch({ type: countActionTypes.ADD })
}