Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. {
  2. type: 'ADD_TODO',
  3. payload: {
  4. text: 'Do something.'
  5. }
  6. }
  7.  
  8. {
  9. type: 'ADD_TODO',
  10. payload: {
  11. title: 'Do something.',
  12. priority: 'HIGH',
  13. completed: false
  14. }
  15. }
  16.  
  17. {
  18. type: 'ADD_TODO',
  19. payload: {
  20. todo: {
  21. title: 'Do something.',
  22. priority: 'HIGH',
  23. completed: false
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement