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