mirror of
https://github.com/umami-software/umami.git
synced 2026-02-24 14:35:35 +01:00
10 lines
271 B
TypeScript
10 lines
271 B
TypeScript
import WebsiteComparePage from './WebsiteComparePage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function ({ params: { websiteId } }) {
|
|
return <WebsiteComparePage websiteId={websiteId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Website Comparison',
|
|
};
|