export async function load({ params, fetch }) { const res = await fetch(`/api/entry?date=${params.date}`); const entries = await res.json(); return { entry: entries[0] }; }