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

11 lines
237 B
TypeScript
Raw Normal View History

2024-01-30 08:10:25 +00:00
import { Metadata } from 'next';
2023-09-29 12:29:22 +00:00
import RetentionReport from './RetentionReport';
2023-09-30 03:19:27 +00:00
export default function RetentionReportPage() {
2024-02-03 01:49:17 +00:00
return <RetentionReport />;
2023-09-29 12:29:22 +00:00
}
2024-01-30 08:10:25 +00:00
export const metadata: Metadata = {
2024-02-03 01:49:17 +00:00
title: 'Create Report | Umami',
2023-09-29 12:29:22 +00:00
};