export default async function Home() { const ret = document.createElement("div"); ret.classList.add("grid"); let html = ""; const response = await fetch("data.json"); const json = await response.json(); json.hs.forEach((i) => { html += `

HS ${i.Ausgabe}

${i.Thema}

`; }); ret.innerHTML = html; return ret; }