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