Files
umami/src/app/(main)/reports/retention/page.tsx
T
2024-02-02 17:49:17 -08:00

11 lines
237 B
TypeScript

import { Metadata } from 'next';
import RetentionReport from './RetentionReport';
export default function RetentionReportPage() {
return <RetentionReport />;
}
export const metadata: Metadata = {
title: 'Create Report | Umami',
};