enzostvs's picture
enzostvs HF staff
gallery filter by most liked
0d2d95b
raw
history blame
247 Bytes
export async function load({ fetch }) {
const response = await fetch("/api/community?page=0&filter=new", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
})
const data = await response.json()
return data
}