2024-01-30 00:10:25 -08:00

11 lines
253 B
TypeScript

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