7 lines
224 B
TypeScript
7 lines
224 B
TypeScript
|
|
import { RoundDetail } from "@/components/round-detail"
|
||
|
|
|
||
|
|
export default async function RoundDetailPage({ params }: { params: Promise<{ id: string }> }) {
|
||
|
|
const { id } = await params
|
||
|
|
return <RoundDetail roundId={id} />
|
||
|
|
}
|