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