teecup/frontend/app/watch/[id]/page.tsx

7 lines
220 B
TypeScript
Raw Normal View History

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