11 lines
301 B
TypeScript
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} />
|
|
}
|