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