mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-07 04:01:21 +00:00
16 lines
465 B
Svelte
16 lines
465 B
Svelte
<script lang="ts">
|
|
import { Separator } from "$lib/components/ui/separator";
|
|
import NotificationsForm from "./notifications-form.svelte";
|
|
import type { PageData } from "./$types";
|
|
|
|
export let data: PageData;
|
|
</script>
|
|
|
|
<div class="space-y-6">
|
|
<div>
|
|
<h3 class="text-lg font-medium">Notifications</h3>
|
|
<p class="text-sm text-muted-foreground">Configure how you receive notifications.</p>
|
|
</div>
|
|
<Separator />
|
|
<NotificationsForm data={data.form} />
|
|
</div>
|