teecup/frontend/app/my-rounds/[id]/leaderboard/page.tsx

16 lines
413 B
TypeScript
Raw Normal View History

2026-08-02 16:34:54 +02:00
import { RoundPageShell } from "@/components/round-page-shell"
import { RoundLeaderboard } from "@/components/round-leaderboard"
export default async function RoundLeaderboardPage({
params,
}: {
params: Promise<{ id: string }>
}) {
const { id } = await params
2026-08-02 16:34:54 +02:00
return (
<RoundPageShell roundId={id} activeTab="leaderboard">
<RoundLeaderboard roundId={id} embedded />
</RoundPageShell>
)
}