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

11 lines
233 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import { Metadata } from 'next';
2024-02-06 08:38:33 +00:00
import ReportPage from './ReportPage';
2023-09-29 12:29:22 +00:00
2024-02-06 08:38:33 +00:00
export default function ({ params: { reportId } }) {
return <ReportPage reportId={reportId} />;
2023-09-29 12:29:22 +00:00
}
export const metadata: Metadata = {
2024-02-17 23:12:14 +00:00
title: 'Reports',
2023-09-29 12:29:22 +00:00
};