11 lines
225 B
TypeScript
11 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} />
|
||
|
|
}
|