import {Container, ListGroup, ListGroupItem} from 'reactstrap'; import React from 'react'; import {Timer} from './Timer'; 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} {props.timerEnd && Spielzeit: } ); }