Files
olympics-calendar/ui/lib/data.ts
Fabrice Lamant fef4690b0b add docker
2025-12-06 14:55:13 +01:00

6 lines
157 B
TypeScript

export const loadSchedule = async () => {
const response = await fetch('/api/data/calendar.json');
const data = await response.json();
return data;
};