import {Container, ListGroup, ListGroupItem} from 'reactstrap';
import React from 'react';
export function TournamentBigImage(props) {
return (
{props.name}
);
}
function TournamentProperties(props) {
return (
{props.description && {props.description}}
{props.isPublic ? 'Das Turnier ist öffentlich.' : 'Das Turnier ist privat.'}
Turnier-Code: {props.code}
von {props.ownerUsername}
);
}