You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
371 B
13 lines
371 B
<script lang="ts"> |
|
import Notifications from "$lib/components/Notifications.svelte"; |
|
import { AAlert } from "$lib/a"; |
|
import { userStore } from "$lib/stores/userStore"; |
|
</script> |
|
|
|
<div class="w-full max-w-3xl mx-auto mt-10 px-4"> |
|
{#if $userStore?.signedIn} |
|
<Notifications /> |
|
{:else} |
|
<AAlert color="blue">Please log in to view your notifications.</AAlert> |
|
{/if} |
|
</div> |