mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-28 13:48:13 +02:00
18 lines
512 B
TypeScript
18 lines
512 B
TypeScript
|
import { Separator } from "@/components/ui/separator"
|
||
|
import { NotificationsForm } from "@/app/configuration/notifications/notifications-form"
|
||
|
|
||
|
export default function SettingsNotificationsPage() {
|
||
|
return (
|
||
|
<div className="space-y-6">
|
||
|
<div>
|
||
|
<h3 className="text-lg font-medium">Notifications</h3>
|
||
|
<p className="text-sm text-muted-foreground">
|
||
|
Configure how you receive notifications.
|
||
|
</p>
|
||
|
</div>
|
||
|
<Separator />
|
||
|
<NotificationsForm />
|
||
|
</div>
|
||
|
)
|
||
|
}
|