mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 19:45:35 +01:00
12 lines
308 B
TypeScript
12 lines
308 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',
|
|
};
|