mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
14 lines
290 B
TypeScript
14 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',
|
|
};
|