Guest User

Untitled

a guest
Dec 13th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. const EXAMPLE_TIME_ENTRIES = [
  2. {
  3. id: 1,
  4. date: '2017-11-20',
  5. categoryId: 1,
  6. notes: 'some example notes',
  7. minutesTracked: 180,
  8. },
  9. {
  10. id: 2,
  11. date: '2017-11-20',
  12. categoryId: 3,
  13. notes: null,
  14. minutesTracked: 90,
  15. },
  16. {
  17. id: 3,
  18. date: '2017-11-21',
  19. categoryId: 2,
  20. notes: 'some more notes...',
  21. minutesTracked: 120,
  22. },
  23. {
  24. id: 4,
  25. date: '2017-11-21',
  26. categoryId: 2,
  27. notes: 'it was amazing',
  28. minutesTracked: 45,
  29. },
  30. {
  31. id: 5,
  32. date: '2017-11-21',
  33. categoryId: 1,
  34. notes: null,
  35. minutesTracked: 30,
  36. },
  37. // ... add more if you feel like
  38. ]
  39.  
  40. const EXAMPLE_CATEGORIES = [
  41. {
  42. id: 1,
  43. name: 'Feeding my cat',
  44. },
  45. {
  46. id: 2,
  47. name: 'Sleeping',
  48. },
  49. {
  50. id: 3,
  51. name: 'Learning React',
  52. },
  53. // ... add more if you feel like
  54. ]
Add Comment
Please, Sign In to add comment