13 lines
317 B
TypeScript
13 lines
317 B
TypeScript
import { Metadata } from 'next';
|
|
import { ComparePage } from './ComparePage';
|
|
|
|
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
|
|
const { websiteId } = await params;
|
|
|
|
return <ComparePage websiteId={websiteId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Compare',
|
|
};
|