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