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