Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. export const addTodo = (todo: any) => {
  2. return {
  3. type: ADD_TODO,
  4. payload: {
  5. todo: todo,
  6. }
  7. }
  8. }
  9.  
  10. export const finishTodo = (index: number) => {
  11. return {
  12. type: FINISH_TODO,
  13. payload: {
  14. index: index,
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement