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

11 lines
268 B
TypeScript
Raw Normal View History

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