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,14 @@
'use client';
import { Column } from '@umami/react-zen';
import { Column, Button, Heading } from '@umami/react-zen';
export function GoalsPage({ websiteId }: { websiteId: string }) {
return <Column>Goals {websiteId}</Column>;
return (
<Column>
{websiteId}
<Button>Add goal</Button>
<Heading>Goal 1</Heading>
<Heading>Goal 2</Heading>
<Heading>Goal 3</Heading>
</Column>
);
}