9 lines
151 B
TypeScript
9 lines
151 B
TypeScript
import type { PageServerLoad } from "./$types";
|
|
|
|
|
|
export const load: PageServerLoad = async ({ locals }) => {
|
|
return {
|
|
user: locals.user,
|
|
}
|
|
};
|