97ec6f2
a084673
c479a59
a084673
97ec6f2 |
|
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
} |