Skip to content

Instantly share code, notes, and snippets.

@LiorB-D
Created April 1, 2022 00:26
Show Gist options
  • Select an option

  • Save LiorB-D/6206000cc36b14003f8c237de8b08b20 to your computer and use it in GitHub Desktop.

Select an option

Save LiorB-D/6206000cc36b14003f8c237de8b08b20 to your computer and use it in GitHub Desktop.
import * as actionTypes from './actionTypes';
export const createToDo = (todo) => {
return {
type: actionTypes.CREATE_NEW_TODO,
todo: todo
}
};
export const deleteToDo = (id) => {
return {
type: actionTypes.REMOVE_TODO,
id: id
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment