mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
13 lines
338 B
JavaScript
13 lines
338 B
JavaScript
import FunnelReport from './funnel/FunnelReport';
|
|
import EventDataReport from './event-data/EventDataReport';
|
|
|
|
const reports = {
|
|
funnel: FunnelReport,
|
|
'event-data': EventDataReport,
|
|
};
|
|
|
|
export default function ReportDetails({ reportId, reportType }) {
|
|
const Report = reports[reportType];
|
|
|
|
return <Report reportId={reportId} />;
|
|
}
|