Breakdown feature for insights report.

This commit is contained in:
Mike Cao 2023-08-06 22:52:17 -07:00
parent 5e1111db5d
commit f48720c915
6 changed files with 51 additions and 46 deletions

View file

@ -1,9 +1,11 @@
import FunnelReport from './funnel/FunnelReport';
import EventDataReport from './event-data/EventDataReport';
import InsightsReport from './insights/InsightsReport';
const reports = {
funnel: FunnelReport,
'event-data': EventDataReport,
insights: InsightsReport,
};
export default function ReportDetails({ reportId, reportType }) {