import React from 'react'; import { Card, CardBody, CardTitle, Table } from 'reactstrap'; import { findTeam } from '../utils/findTeam'; export class DominanceShower extends React.Component { render() { return ( {this.props.title}
{findTeam(this.props.teams, this.props.stats.id).name}
{this.props.stats.pointsMade} {this.props.stats.pointsReceived}
Punkte erzielt Punkte kassiert
); } }