app.js 104 B

1234567
  1. export const INCREMENT = "INCREMENT";
  2. export function increment() {
  3. return {
  4. type: INCREMENT,
  5. };
  6. }