"use client" import { GettingStarted } from "@/components/onboarding/getting-started" import { KeyMetrics, type MetricItem } from "@/components/key-metrics" import { ChartsOverview, type ChartCardVariant } from "@/components/charts-overview" export interface DashboardReportDeferredContentProps { metrics: MetricItem[] chartVariant: ChartCardVariant } /** * Heavy dashboard report body. Kept behind React.lazy so the first dashboard * paint can show the header and KPI strip before loading Recharts. */ export function DashboardReportDeferredContent({ metrics, chartVariant, }: DashboardReportDeferredContentProps) { return ( <>
) }