Files
homepage/src/routes/rezepte/category/+page.ts
2023-06-24 15:35:37 +02:00

8 lines
201 B
TypeScript

import type { PageLoad } from "./$types";
export async function load({ fetch}) {
const res = await fetch(`/api/items/category`);
const categories= await res.json();
return {categories}
};