11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
|
|
import { RoundScorecard } from "@/components/round-scorecard"
|
||
|
|
|
||
|
|
export default async function RoundScorecardPage({
|
||
|
|
params,
|
||
|
|
}: {
|
||
|
|
params: Promise<{ id: string }>
|
||
|
|
}) {
|
||
|
|
const { id } = await params
|
||
|
|
return <RoundScorecard roundId={id} />
|
||
|
|
}
|