mirror of https://github.com/Lapikud/tipilan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
566 B
28 lines
566 B
type ScheduleItem = { |
|
time?: string; // Aeg on ajutine praegu kuna pole 100% kindlalt paigas |
|
title: string; |
|
location: string; |
|
}; |
|
|
|
export const scheduleData: Record<string, ScheduleItem[]> = { |
|
"24. oktoober": [ |
|
{ |
|
title: "League of Legends põhiturniir", |
|
location: "Aula", |
|
}, |
|
{ |
|
title: "Miniturniirid", |
|
location: "Tudengimaja", |
|
}, |
|
], |
|
"25. oktoober": [ |
|
{ |
|
title: "Counter-Strike 2 põhiturniir", |
|
location: "Aula", |
|
}, |
|
{ |
|
title: "Miniturniirid", |
|
location: "Tudengimaja", |
|
}, |
|
], |
|
};
|
|
|