add missing import

This commit is contained in:
Francis Cao 2025-04-22 07:44:43 -07:00
parent 8d3aad8454
commit 7a0765fb4b
3 changed files with 192 additions and 242 deletions

View file

@ -6,8 +6,9 @@ import GoalReport from '../goals/GoalsReport';
import InsightsReport from '../insights/InsightsReport';
import JourneyReport from '../journey/JourneyReport';
import RetentionReport from '../retention/RetentionReport';
import UTMReport from '../utm/UTMReport';
import RevenueReport from '../revenue/RevenueReport';
import UTMReport from '../utm/UTMReport';
import AttributionReport from '../attribution/AttributionReport';
const reports = {
funnel: FunnelReport,
@ -18,6 +19,7 @@ const reports = {
goals: GoalReport,
journey: JourneyReport,
revenue: RevenueReport,
attribution: AttributionReport,
};
export default function ReportPage({ reportId }: { reportId: string }) {