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

10 lines
233 B
TypeScript

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