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

11 lines
213 B
TypeScript

import FunnelReportPage from './FunnelReportPage';
import { Metadata } from 'next';
export default function () {
return <FunnelReportPage />;
}
export const metadata: Metadata = {
title: 'Funnel Report',
};