enzostvs's picture
enzostvs HF staff
wip API get
97ec6f2
raw
history blame
No virus
139 Bytes
export async function load({ fetch }) {
const data = await fetch("/api/community")
const cards = await data.json()
return { cards }
}