mirror of
https://github.com/fabrice404/olympics-calendar.git
synced 2025-12-13 06:39:47 +00:00
6 lines
157 B
TypeScript
6 lines
157 B
TypeScript
export const loadSchedule = async () => {
|
|
const response = await fetch('/api/data/calendar.json');
|
|
const data = await response.json();
|
|
return data;
|
|
};
|