umami/src/app/(main)/reports/[reportId]/page.tsx
2025-02-21 16:55:05 -08:00

12 lines
310 B
TypeScript

import { Metadata } from 'next';
import { ReportPage } from './ReportPage';
export default async function ({ params }: { params: Promise<{ reportId: string }> }) {
const { reportId } = await params;
return <ReportPage reportId={reportId} />;
}
export const metadata: Metadata = {
title: 'Reports',
};