umami/src/app/(main)/websites/[websiteId]/event-data/page.tsx

11 lines
262 B
TypeScript
Raw Normal View History

2024-02-06 08:38:33 +00:00
import { Metadata } from 'next';
import EventDataPage from './EventDataPage';
2023-09-29 12:29:22 +00:00
2024-02-06 08:38:33 +00:00
export default async function ({ params: { websiteId } }) {
return <EventDataPage websiteId={websiteId} />;
2023-09-29 12:29:22 +00:00
}
2024-02-06 08:38:33 +00:00
export const metadata: Metadata = {
title: 'Event Data | Umami',
};