Files
homefeed/frontend/src/routes/+layout.ts
T
2026-07-21 12:51:31 -04:00

8 lines
217 B
TypeScript

import type { LayoutLoad } from './$types';
import { getCategories } from '$lib/api';
export const load: LayoutLoad = async ({ fetch }) => {
const categories = await getCategories(fetch);
return { categories };
};