11 lines
237 B
TypeScript
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',
|
|
};
|