initial-data.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. const data = {
  2. trainings: [
  3. {
  4. id: 0,
  5. title: "Indoor HIIT + Core",
  6. date: 1572345900000,
  7. location: "Yoga Room",
  8. participants: [0, 2],
  9. ratings: [
  10. {
  11. user: 0,
  12. createdAt: 1572621963544,
  13. rating: 5,
  14. comment: "Best training ever."
  15. }
  16. ],
  17. content: [
  18. {
  19. name: "Warmup",
  20. duration: 153,
  21. track: {
  22. artist: "Sam & Dave",
  23. title: "Hold on, I'm coming",
  24. link: "https://www.youtube.com/watch?v=AREppyQf5uw"
  25. },
  26. exercises: [0]
  27. }
  28. ]
  29. }
  30. ],
  31. exercises: [
  32. {
  33. id: 0,
  34. name: "Burpee",
  35. description: "Squat, kick legs back, bring legs back forward, stand up.",
  36. video: null
  37. }
  38. ],
  39. people: [
  40. {
  41. id: 0,
  42. name: "Tomi",
  43. password: "hacked",
  44. phone: "077 665 54 43"
  45. },
  46. {
  47. id: 2,
  48. name: "Marius",
  49. password: "hacked",
  50. phone: "077 766 55 44"
  51. }
  52. ],
  53. polls: []
  54. };
  55. export default data;