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