campfire/src/routes/post/[id]/+page.js

5 lines
90 B
JavaScript

export async function load({ params }) {
return {
post_id: params.id
};
}