peer-at-code-web/src/routes/+layout.ts
2023-09-18 13:08:29 +02:00

5 lines
130 B
TypeScript

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