'use client' import { trpc } from '@/lib/trpc/client' import { Skeleton } from '@/components/ui/skeleton' import { StatusBreakdownChart } from '@/components/charts' import { RoundTypeStatsCards } from '@/components/observer/round-type-stats' interface MentoringReportTabsProps { roundId: string programId: string } function StatusBreakdownSection({ roundId }: { roundId: string }) { const { data: statusBreakdown, isLoading } = trpc.analytics.getStatusBreakdown.useQuery({ roundId }) if (isLoading) return if (!statusBreakdown) return null return } export function MentoringReportTabs({ roundId }: MentoringReportTabsProps) { return (
) }