11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
|
|
import { PublicTournament } from "@/components/public-tournament"
|
||
|
|
|
||
|
|
export default async function PublicTournamentPage({
|
||
|
|
params,
|
||
|
|
}: {
|
||
|
|
params: Promise<{ id: string }>
|
||
|
|
}) {
|
||
|
|
const { id } = await params
|
||
|
|
return <PublicTournament tournamentId={id} />
|
||
|
|
}
|