Files
livecodingfr/src/routes/guides/+page.ts
2023-12-23 17:25:05 +01:00

5 lines
150 B
TypeScript

export const load = async ({ fetch }) => {
const response = await fetch(`/api/guides`);
const guides = await response.json();
return { guides };
};