export async function getSports() { const response = await fetch('/data/sports'); const sportsList = await response.json(); return sportsList; } export async function getSeasons() { const response = await fetch('/data/seasons'); const seasonsList = await response.json(); return seasonsList; }