mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
18 lines
520 B
TypeScript
18 lines
520 B
TypeScript
import { Separator } from "@/registry/new-york/ui/separator"
|
|
import { NotificationsForm } from "@/app/examples/forms/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>
|
|
)
|
|
}
|