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

12 lines
246 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
'use client';
2024-03-14 09:45:00 +00:00
import { Metadata } from 'next';
2024-02-06 07:59:33 +00:00
import RetentionReport from './RetentionReport';
export default function RetentionReportPage() {
return <RetentionReport />;
}
2024-03-14 09:45:00 +00:00
export const metadata: Metadata = {
title: 'Retention Report',
};