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

9 lines
199 B
JavaScript
Raw Normal View History

2023-04-30 18:33:19 +02:00
import { getPosts } from '$lib/cohost';
/** @type {import('./$types').PageServerLoad} */
export async function load({ params }) {
const posts = await getPosts();
return {
posts: posts
};
}