memento-dev/app-old/data/snippets/react/reducer/reducer-actions-enum.js

7 lines
123 B
JavaScript

export const CounterActionTypes = {
INCREMENT: "INCREMENT",
DECREMENT: "DECREMENT",
RESET: "RESET",
SET: "SET",
};