umami/src/app/(main)/reports/funnel/page.tsx
2024-02-17 15:12:14 -08:00

10 lines
213 B
TypeScript

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