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

7 lines
236 B
TypeScript
Raw Normal View History

2026-08-07 22:02:56 +02:00
import { WatchScorecard } from "@/components/watch-scorecard"
export default async function WatchScorecardPage({ params }: { params: Promise<{ id: string }> }) {
const { id } = await params
return <WatchScorecard roundId={id} />
}