umami/src/app/(app)/reports/funnel/page.tsx

11 lines
241 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import FunnelReport from './FunnelReport';
import { Metadata } from 'next';
export default function FunnelReportPage() {
return <FunnelReport reportId={null} />;
}
export const metadata: Metadata = {
title: 'Funnel Report | umami',
};