Components
A toast notification button that confirms a placed order with a description and a "View Order" action, built on Sonner.
Loading preview...
"use client";
import Toast6 from "@/components/ui/toast6";
import { Toaster } from "sonner";
export default function ToastDemo() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center bg-background text-foreground">
<Toast6 />
<Toaster richColors position="top-center" />
</div>
);
}