15 lines
325 B
TypeScript
15 lines
325 B
TypeScript
|
|
'use client'
|
||
|
|
|
||
|
|
type RankingDashboardProps = {
|
||
|
|
competitionId: string
|
||
|
|
roundId: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export function RankingDashboard({ competitionId: _competitionId, roundId: _roundId }: RankingDashboardProps) {
|
||
|
|
return (
|
||
|
|
<div className="text-muted-foreground text-sm p-4">
|
||
|
|
Ranking dashboard coming soon...
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|