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