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