Converted UTM report to a view.

This commit is contained in:
Mike Cao
2025-05-20 21:25:06 -07:00
parent 06f76dda13
commit d0d11225f4
24 changed files with 1815 additions and 1568 deletions

View File

@@ -1,6 +1,13 @@
'use client';
import { Column } from '@umami/react-zen';
import { UTMView } from './UTMView';
import { WebsiteControls } from '@/app/(main)/websites/[websiteId]/WebsiteControls';
export function UTMPage({ websiteId }: { websiteId: string }) {
return <Column>Goals {websiteId}</Column>;
return (
<Column gap>
<WebsiteControls websiteId={websiteId} />
<UTMView websiteId={websiteId} />
</Column>
);
}