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