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