2025-08-14 15:06:48 +02:00

11 lines
301 B
TypeScript

// app/match-details/[matchId]/vote/VoteClient.tsx
'use client'
import MapVetoPanel from '@/app/components/MapVetoPanel'
import { useMatch } from '../MatchContext' // aus dem Layout-Context
export default function VoteClient() {
const match = useMatch()
return <MapVetoPanel match={match} />
}