Components
A component to manage and customize notification preferences.
Loading preview...
import NotificationSettings from "@/components/ui/notification-settings";
export default function DemoOne() {
return (
<>
<div className="max-w-[95%] py-12 h-full w-full">
<NotificationSettings />
</div>
</>
);
}