mirror of
https://github.com/fabrice404/olympics-calendar.git
synced 2026-01-03 03:59:42 +00:00
6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
export const loadSchedule = async () => {
|
|
const response = await fetch('/data/calendar.json');
|
|
const data = await response.json();
|
|
return data;
|
|
};
|