'use client';

import StageAnalytics from './StageAnalytics';
import type { StageBreakdown } from './types';

/** Stage distribution scoped to active JDs — same visual as the main report. */
export default function OverallCandidatesByStage({ data }: { data: StageBreakdown }) {
  return <StageAnalytics data={data} />;
}
