mirror of
https://github.com/umami-software/umami.git
synced 2026-02-24 06:25:43 +01:00
Converted UTM report to a view.
This commit is contained in:
parent
06f76dda13
commit
d0d11225f4
24 changed files with 1815 additions and 1568 deletions
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue