import Table from './Table' import Image from 'next/image' import { MatchPlayer } from '@/app/types/match' type Props = { player: MatchPlayer } export default function MatchPlayerCard({ player }: Props) { return ( {`Avatar {player.user.name} {player.stats?.kills ?? '-'} {player.stats?.deaths ?? '-'} {player.stats?.assists ?? '-'} {player.stats?.adr ?? '-'} {player.stats?.adr ?? '-'} ) }