mirror of
https://github.com/jcreek/SvelteKitSaasBoilerplate.git
synced 2026-07-15 20:13:50 +00:00
17 lines
338 B
Svelte
17 lines
338 B
Svelte
<script lang="ts">
|
|
import { onDestroy } from 'svelte';
|
|
import { type User } from '@supabase/auth-js';
|
|
|
|
export let data;
|
|
let { supabase, session } = data;
|
|
$: ({ supabase, session } = data);
|
|
</script>
|
|
|
|
<div class="h-screen">
|
|
{#if session?.user}
|
|
{session?.user?.email}
|
|
{:else}
|
|
<p>Please log in to view this page</p>
|
|
{/if}
|
|
</div>
|