Files
fusion/plugins/fusion-plugin-reports/src/dashboard-view.tsx
Fusion 43d3ac2c18 feat(FN-3786): add reports dashboard view and comparison tooling
Adds a Reports dashboard view (`ReportsView`) to the reports plugin with a full supporting stack of components (`ReportComparisonDrawer`, `ReportDetailPanel`, `ReportFiltersBar`, `ReportListItem`, `ReportEmptyState`), hooks (`useReports`, `useReportPreview`, `useReportSectionDiff`, `useViewportMode`

Fusion-Task-Id: FN-3786
2026-05-10 15:33:25 -07:00

7 lines
349 B
TypeScript

import type { PluginDashboardViewContext } from "@fusion/dashboard/app/plugins/types";
import { ReportsView } from "./dashboard/ReportsView.js";
export function ReportsDashboardView({ context }: { context?: PluginDashboardViewContext }) {
return <ReportsView projectId={context?.projectId} addToast={context?.addToast ?? (() => undefined)} />;
}