top tag selection for further drill down

This commit is contained in:
2026-05-09 13:54:46 +05:30
parent f5322b8467
commit 17b5a107fe
11 changed files with 112 additions and 28 deletions

View File

@@ -1,6 +1,7 @@
import * as React from "react";
import {
ReportData
ReportData,
GroupKey,
} from "../../features/report";
export type DashboardMode = "expense" | "income";
@@ -11,6 +12,7 @@ export interface DashboardState {
mode: DashboardMode;
periodType: DashboardPeriodType;
selectedPeriodId: DashboardSelectedPeriodId;
selectedGroupKey: GroupKey | null;
comparison: boolean;
}