1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- const data = {
- trainings: [
- {
- id: 0,
- title: 'Indoor HIIT + Core',
- date: 1572345900000,
- location: 'Yoga Room',
- participants: [0, 2],
- ratings: [
- {
- user: 0,
- createdAt: 1572621963544,
- value: 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]
- }
- ]
- },
- {
- id: 1,
- title: 'Indoor HIIT + Core',
- date: 1572345900000,
- location: 'Yoga Room',
- participants: [0, 2],
- ratings: [
- {
- user: 0,
- createdAt: 1572621963544,
- value: 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
|