umami/src/app/(main)/websites/[websiteId]/cohorts/page.tsx
2025-11-22 22:42:42 -08:00

12 lines
322 B
TypeScript

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