7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
import { getVideos } from "$lib/services";
|
|
export async function load({ fetch }) {
|
|
return {
|
|
videos: await getVideos(fetch),
|
|
};
|
|
}
|