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