import { useToast } from "@core/hooks/useToast.js"; import { Toast, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport } from "@components/UI/Toast.js"; export function Toaster() { const { toasts } = useToast(); return ( {toasts.map(function ({ id, title, description, action, ...props }) { return (
{title && {title}} {description && ( {description} )}
{action}
); })}
); }