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