Posted on July 24, 2024 vmeu,d By. Amos Ihunna View Count. 0 // src/actions.js import { INCREMENT, DECREMENT, RESET } from './actionTypes'; export const increment = () => ({ type: INCREMENT }); export const decrement = () => ({ type: DECREMENT }); export const reset = () => ({ type: RESET });