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