Files
MOPC-Portal/src/components/admin/round/ranking-dashboard.tsx
Matt 8f71527353 feat(02-01): register Ranking tab in round detail page + create component stub
- Create src/components/admin/round/ranking-dashboard.tsx (stub with placeholder text)
- Import RankingDashboard in round detail page.tsx
- Add Ranking tab entry guarded by isEvaluation (uses existing BarChart3 icon)
- Add TabsContent block rendering RankingDashboard with competitionId + roundId props
2026-02-27 09:41:59 +01:00

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