server/frontend/fic/src/routes/tags/[tag]/+page.js

6 lines
80 B
JavaScript

export async function load({ params }) {
return {
tag: params.tag,
};
}