mirror of
https://github.com/umami-software/umami.git
synced 2026-02-22 05:25:36 +01: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',
|
|
};
|