teecup/frontend/app/my-rounds/[id]/stats/page.tsx

10 lines
225 B
TypeScript

import { RoundStats } from "@/components/round-stats"
export default async function RoundStatsPage({
params,
}: {
params: Promise<{ id: string }>
}) {
const { id } = await params
return <RoundStats roundId={id} />
}