import {Card, CardBody, Col, Row, Table} from 'reactstrap';
import {Match} from './Match';
import React from 'react';
export default function GroupStage(props) {
return (
Gruppenphase
{props.groups.map(group => )}
);
}
function Group(props) {
return (
Gruppe {props.group.id + 1}
{props.group.matches.map((match => (
)))}
);
}
function GroupScoresTable(props) {
return (
| Team |
Punkte |
erzielt |
kassiert |
{props.scores.map(groupScore => )}
);
}
function GroupScoresTableRow(props) {
return (
| {props.score.team.name} |
{props.score.group_points} |
{props.score.received_points} |
{props.score.scored_points} |
);
}