mirror of
https://github.com/umami-software/umami.git
synced 2026-02-25 06:55:35 +01:00
Added AnimatedDiv component.
This commit is contained in:
parent
2978bf3c6f
commit
a8a1ccce18
26 changed files with 83 additions and 80 deletions
|
|
@ -1,13 +1,13 @@
|
|||
'use client';
|
||||
import { useReport } from '@/components/hooks';
|
||||
import EventDataReport from '../event-data/EventDataReport';
|
||||
import FunnelReport from '../funnel/FunnelReport';
|
||||
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 { EventDataReport } from '../event-data/EventDataReport';
|
||||
import { FunnelReport } from '../funnel/FunnelReport';
|
||||
import { GoalsReport } 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';
|
||||
|
||||
const reports = {
|
||||
funnel: FunnelReport,
|
||||
|
|
@ -15,7 +15,7 @@ const reports = {
|
|||
insights: InsightsReport,
|
||||
retention: RetentionReport,
|
||||
utm: UTMReport,
|
||||
goals: GoalReport,
|
||||
goals: GoalsReport,
|
||||
journey: JourneyReport,
|
||||
revenue: RevenueReport,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue