add usermamagement page

This commit is contained in:
Alex
2024-10-13 13:38:30 +02:00
parent 47e4e8ce55
commit ab8d143aeb
4 changed files with 278 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
/** @type {import('./$types').LayoutLoad} */
export async function load({ fetch, url, data }) {
const { users } = data;
return {
users: data.users,
user: data.user,
};
}