7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
|
|
import { adminListArticles } from "$lib/services";
|
||
|
|
|
||
|
|
export async function load({ fetch }) {
|
||
|
|
const articles = await adminListArticles(fetch).catch(() => []);
|
||
|
|
return { articles };
|
||
|
|
}
|