8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
import type { PageLoad } from './$types'
|
|
|
|
export const load = (async () => {
|
|
return {
|
|
title: 'Access Point'
|
|
}
|
|
}) satisfies PageLoad
|