8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import type { LayoutServerLoad } from './$types';
|
|
|
|
export const load: LayoutServerLoad = async (event) => {
|
|
return {
|
|
user: event.locals.user
|
|
};
|
|
};
|