cohost-blogger/src/routes/+page.server.js

9 lines
199 B
JavaScript

import { getPosts } from '$lib/cohost';
/** @type {import('./$types').PageServerLoad} */
export async function load({ params }) {
const posts = await getPosts();
return {
posts: posts
};
}