mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import FunnelReport from './FunnelReport';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function FunnelReportPage() {
|
|
return <FunnelReport reportId={null} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Funnel Report | umami',
|
|
};
|