'use client' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Layers } from 'lucide-react' type ProjectStatesTableProps = { competitionId: string roundId: string } export function ProjectStatesTable({ competitionId, roundId }: ProjectStatesTableProps) { return ( Project States

Projects participating in this round

No Active Projects

Project states will appear here when the round is active

) }