mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import ReportDetails from './ReportDetails';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function ReportDetailsPage({ params: { reportId } }) {
|
|
if (!reportId) {
|
|
return null;
|
|
}
|
|
|
|
return <ReportDetails reportId={reportId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Reports | Umami',
|
|
};
|