9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
|
|
|
||
|
|
import {getExams} from "$lib/data/qualify-exam"
|
||
|
|
import type { PageServerLoad } from './$types'
|
||
|
|
export const load: PageServerLoad = async () => {
|
||
|
|
const exams = await getExams()
|
||
|
|
return {exams}
|
||
|
|
}
|
||
|
|
|