umami/src/app/(main)/reports/[reportId]/page.tsx
2024-02-02 17:49:17 -08:00

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',
};