umami/src/app/(main)/websites/[websiteId]/sessions/page.tsx
2024-11-26 09:28:57 -08:00

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',
};