8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
import type { PageLoad } from './$types';
|
|
|
|
export const load = (async ({ params }) => {
|
|
return {
|
|
genre: params.genre
|
|
};
|
|
}) satisfies PageLoad;
|