Updated reports.

This commit is contained in:
Mike Cao 2025-06-08 22:21:28 -07:00
parent 28e872f219
commit 01bd21c5b4
75 changed files with 1373 additions and 980 deletions

View file

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