mirror of
https://github.com/umami-software/umami.git
synced 2026-02-16 10:35:35 +01:00
12 lines
297 B
TypeScript
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',
|
|
};
|