tech-bot/frontend/src/routes/+layout.server.ts

6 lines
144 B
TypeScript

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