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

11 lines
225 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() {
2024-02-03 01:49:17 +00:00
return <FunnelReport />;
2023-09-29 12:29:22 +00:00
}
export const metadata: Metadata = {
2024-02-03 01:49:17 +00:00
title: 'Funnel Report | Umami',
2023-09-29 12:29:22 +00:00
};