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

10 lines
215 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import WebsiteReports from './WebsiteReports';
2024-01-30 08:10:25 +00:00
export default function WebsiteReportsPage({ params: { websiteId } }) {
if (!websiteId) {
2023-09-29 12:29:22 +00:00
return null;
}
2024-01-30 08:10:25 +00:00
return <WebsiteReports websiteId={websiteId} />;
2023-09-29 12:29:22 +00:00
}