mirror of
https://github.com/thiloho/archtika.git
synced 2025-11-22 10:51:36 +01:00
8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
import type { LayoutServerLoad } from "./$types";
|
|
|
|
export const load: LayoutServerLoad = async ({ locals }) => {
|
|
return {
|
|
user: locals.user
|
|
};
|
|
};
|