import React from "react"; import { Card } from "react-bootstrap"; import propTypes from "prop-types"; export default class SportInfoCard extends React.Component { constructor(props) { super(props); } render() { return ( {this.props.sport.name} {this.props.sport.minPlayers.toString()}

{this.props.sport.description}

); } } SportInfoCard.propTypes = { sport: propTypes.object, };