Skip to content

Instantly share code, notes, and snippets.

@LiorB-D
Created April 1, 2022 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LiorB-D/6206000cc36b14003f8c237de8b08b20 to your computer and use it in GitHub Desktop.
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