1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- const data = {
- trainings: [
- {
- id: 0,
- title: "Indoor HIIT + Core",
- date: 1572345900000,
- location: "Yoga Room",
- participants: [0, 2],
- ratings: [
- {
- user: 0,
- createdAt: 1572621963544,
- rating: 5,
- comment: "Best training ever."
- }
- ],
- content: [
- {
- name: "Warmup",
- duration: 153,
- track: {
- artist: "Sam & Dave",
- title: "Hold on, I'm coming",
- link: "https://www.youtube.com/watch?v=AREppyQf5uw"
- },
- exercises: [0]
- }
- ]
- }
- ],
- exercises: [
- {
- id: 0,
- name: "Burpee",
- description: "Squat, kick legs back, bring legs back forward, stand up.",
- video: null
- }
- ],
- people: [
- {
- id: 0,
- name: "Tomi",
- password: "hacked",
- phone: "077 665 54 43"
- },
- {
- id: 2,
- name: "Marius",
- password: "hacked",
- phone: "077 766 55 44"
- }
- ],
- polls: []
- };
- export default data;
|