import { Toast, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport } from "@/components/ui/toast"; import { useToast } from "@/components/ui/use-toast"; export function Toaster() { const { toasts, dismiss } = useToast(); return ( {toasts.map(({ id, title, description, action, ...props }) => ( { if (!open) { dismiss(id); } }} >
{title ? {title} : null} {description ? {description} : null}
{action}
))}
); }