Converted UTM report to a view.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user