export function ToastContainer({ toasts }) { if (!toasts.length) return null; return (
{toasts.map((toast) => (
{toast.type === "success" ? ( ) : toast.type === "error" ? ( ) : ( )} {toast.message}
))}
); }