mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-03 17:44:44 +02:00
17 lines
491 B
TypeScript
17 lines
491 B
TypeScript
import { Separator } from "@/components/ui/separator"
|
|
import { NotificationsForm } from "@/components/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>
|
|
)
|
|
}
|