mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 11:05:36 +01:00
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
import type { Metadata } from 'next';
|
|
import { EventsPage } from './EventsPage';
|
|
|
|
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
|
|
const { websiteId } = await params;
|
|
|
|
return <EventsPage websiteId={websiteId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Events',
|
|
};
|