import { type ReactNode, useState } from 'react'; import type { LeaderboardUserDetails, ListLeaderboardStatsResponse, } from '../../api/leaderboard'; import { cn } from '../../lib/classname'; import { FolderKanban, GitPullRequest, Users2, Zap } from 'lucide-react'; import { TrophyEmoji } from '../ReactIcons/TrophyEmoji'; import { SecondPlaceMedalEmoji } from '../ReactIcons/SecondPlaceMedalEmoji'; import { ThirdPlaceMedalEmoji } from '../ReactIcons/ThirdPlaceMedalEmoji'; type LeaderboardPageProps = { stats: ListLeaderboardStatsResponse; }; export function LeaderboardPage(props: LeaderboardPageProps) { const { stats } = props; return (
{emptyText}