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