This commit is contained in:
Aidan Bleser 2025-06-13 12:38:21 -05:00
parent f6239792c4
commit fbf350f73c
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,7 @@
export async function load({locals}) {
const session = await locals.auth();
return {
session
}
}

View file

@ -2,7 +2,9 @@
import '../app.css';
import { ModeWatcher } from 'mode-watcher';
let { children } = $props();
let { data, children } = $props();
$inspect(data.session);
</script>
<ModeWatcher />