export async function load ({ fetch }) {
const response = await fetch('/api/posts')
return await response.json()
}