import React from 'react' import { date2s, time2s } from '../../helpers.js' class MatchDisp extends React.Component { render () { const match = this.props.match return ( {match.Ort || Kein Platz zugeteilt} {match.Datum ? date2s(match.Datum) : Kein Datum zugeteilt} {match.Datum ? time2s(match.Datum) : Keine Zeit zugeteilt} {match.Konkurrenz} {match.Spieler1} {match.Spieler2} ) } } export default MatchDisp