Shallie/src/routes/+page.ts

10 lines
153 B
TypeScript
Raw Normal View History

2022-12-17 11:07:39 +00:00
import { browsePost } from '$lib/content/contentApi';
export async function load() {
const posts = await browsePost();
return {
posts: posts
};
}