umami/src/app/(main)/reports/[id]/page.tsx

15 lines
290 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
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',
};