umami/src/app/(main)/websites/[websiteId]/cohorts/page.tsx

12 lines
317 B
TypeScript

import { Metadata } from 'next';
import { CohortsPage } from './CohortsPage';
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
const { websiteId } = await params;
return <CohortsPage websiteId={websiteId} />;
}
export const metadata: Metadata = {
title: 'Cohorts',
};