File size: 247 Bytes
a084673
0d2d95b
a084673
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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
}