import { Suspense } from "react" import { RoundDetail } from "@/components/round-detail" export default async function RoundDetailPage({ params }: { params: Promise<{ id: string }> }) { const { id } = await params return ( } > ) }