import React from "react"; import propTypes from "prop-types"; import MatchInfoCard from "./MatchInfoCard"; import "../styles/MatchInfoCardDisplay.css"; export default class MatchInfoCardDisplay extends React.Component { constructor(props) { super(props); } render() { let matches = null; if (this.props.recommendedmatches.length > 0) { matches = this.props.recommendedmatches.map((match) => ); } return (
{matches}
); } } MatchInfoCardDisplay.propTypes = { recommendedmatches: propTypes.array, };