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