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