Test new Activity Calendar and add sub page

This commit is contained in:
schooltechx 2023-04-04 19:28:33 +07:00
parent ebc6fc6ea2
commit 83d3a3af25
3 changed files with 18 additions and 48 deletions

View file

@ -0,0 +1,7 @@
import type { PageServerLoad } from './$types'
export const load: PageServerLoad = async ({params}) => {
const id = params.id
return {id}
}