Components
A button that triggers a success toast notification with a title and description using Sonner.
Loading preview...
"use client";
import ToastComponent from "@/components/ui/toast2";
import { Toaster } from "sonner";
export default function ToastDemo() {
return (
<div className="bg-background text-foreground flex min-h-[350px] w-full items-center justify-center p-8">
<ToastComponent />
<Toaster />
</div>
);
}