// src/routes/posts/[id]/+page.js export async function load({ params, fetch }) { const res = await fetch( `https://jsonplaceholder.typicode.com/posts/${params.id}` ); const post = await res.json(); return { post }; }

← Back

{data.post.title}

{data.post.body}