umami/src/app/(main)/reports/[reportId]/page.tsx
2024-11-26 09:28:57 -08:00

12 lines
297 B
TypeScript

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