enzostvs's picture
enzostvs HF staff
fix build
a084673
raw
history blame
236 Bytes
export async function load({ fetch }) {
const response = await fetch("/api/community?page=1", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
})
const data = await response.json()
return data
}