Posted on

k,.m,m

// src/redux/actions.js

export const ADD_TODO = 'ADD_TODO';
export const TOGGLE_TODO = 'TOGGLE_TODO';

// Action creators
export const addTodo = (text) => {
  return {
    type: ADD_TODO,
    payload: { text }
  };
};

export const toggleTodo = (index) => {
  return {
    type: TOGGLE_TODO,
    payload: { index }
  };
};