import React from "react"; import propTypes from "prop-types"; import GameInfoCard from "./GameInfoCard"; export default class GameInfoCardDisplay extends React.Component { constructor(props) { super(props); } render() { return (
{this.props.recommendedMatches.map((match) => )}
); } } GameInfoCardDisplay.propTypes = { recommendedMatches: propTypes.array, };