mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
10 lines
254 B
TypeScript
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',
|
|
};
|