/* Copyright 2026 Marimo. All rights reserved. */ import { useToast } from "@/components/ui/use-toast"; import { Toast, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, } from "./toast"; export const Toaster = () => { const { toasts } = useToast(); return ( {toasts.map(({ id, title, description, action, ...props }) => (
{title && {title}} {description && {description}}
{action}
))}
); };