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 return ( ) }