import { Toast, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, } from "@reactive-resume/ui"; import { useToast } from "../hooks/use-toast"; export const Toaster = () => { const { toasts } = useToast(); return ( {toasts.map(({ id, icon, title, description, action, ...props }) => { return (
{icon} {title && {title}}
{description && {description}}
{action}
); })}
); };