peer-at-code-web/src/routes/+layout.ts
2023-07-26 17:11:18 +02:00

5 lines
130 B
TypeScript

import type { LayoutLoad } from './$types';
export const load: LayoutLoad = async ({ data: { user } }) => {
return { user };
};