"use client"; import { CheckCircle, WarningCircle } from "@phosphor-icons/react/ssr"; import { useConfigToasts } from "@/lib/ws/client"; export function ToastStack() { const toasts = useConfigToasts(); if (toasts.length === 0) return null; return (
{toasts.map((toast) => (
{toast.tone === "ok" ? ( ) : ( )} {toast.message}
))}
); }