'use client'; import dynamic from 'next/dynamic'; import type { UnifiedChartSpec } from '@ftb/shared'; import { toEChartsOption } from '@/lib/analysis-chart-renderer'; const ReactECharts = dynamic(() => import('echarts-for-react'), { ssr: false }); export function AnalysisChart({ spec }: { spec: UnifiedChartSpec }) { return (

{spec.title}

{spec.subtitle &&

{spec.subtitle}

}
); }