mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
11 lines
213 B
TypeScript
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',
|
|
};
|