fixed compare

This commit is contained in:
2026-04-07 10:49:10 +05:30
parent e6c7778c08
commit f4e5979c00
5 changed files with 257 additions and 193 deletions

View File

@@ -31,6 +31,13 @@ export interface HistoryChartProps {
setComparison: (mode: boolean) => void;
}
export interface AggregatedDashboardData {
chartData: ChartData;
totalAmount: number;
topPayees: Array<{ payeeName: string; amount: number }>;
}
export default function HistoryChart({
header,
summary,