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