24 lines
524 B
TypeScript
24 lines
524 B
TypeScript
export const appointments = [
|
|
{
|
|
title: 'Snmutna buzia',
|
|
startDate: new Date(2020, 5, 3, 9, 45),
|
|
endDate: new Date(2020, 5, 3, 11, 30),
|
|
id: 0,
|
|
location: 'Room 1',
|
|
},
|
|
{
|
|
title: 'Twoja stara beszamel',
|
|
startDate: new Date(2020, 5, 1, 9, 45),
|
|
endDate: new Date(2020, 5, 1, 11, 30),
|
|
id: 0,
|
|
location: 'Room 1',
|
|
},
|
|
{
|
|
title: 'Twoja stara beszamel',
|
|
startDate: new Date(2020, 5, 1, 9, 45),
|
|
endDate: new Date(2020, 5, 1, 11, 30),
|
|
id: 0,
|
|
location: 'Room 1',
|
|
},
|
|
];
|