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

10 lines
254 B
TypeScript

import { Metadata } from 'next';
import EventDataPage from './EventDataPage';
export default async function ({ params: { websiteId } }) {
return <EventDataPage websiteId={websiteId} />;
}
export const metadata: Metadata = {
title: 'Event Data',
};