mirror of
https://github.com/umami-software/umami.git
synced 2026-02-24 14:35:35 +01:00
Updated reports.
This commit is contained in:
parent
28e872f219
commit
01bd21c5b4
75 changed files with 1373 additions and 980 deletions
12
src/app/(main)/websites/[websiteId]/reports/funnels/page.tsx
Normal file
12
src/app/(main)/websites/[websiteId]/reports/funnels/page.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { Metadata } from 'next';
|
||||
import { FunnelsPage } from './FunnelsPage';
|
||||
|
||||
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
|
||||
const { websiteId } = await params;
|
||||
|
||||
return <FunnelsPage websiteId={websiteId} />;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Funnels',
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue