import React, { Component } from "react"; export class Card extends Component { render() { return (

{this.props.title}

{this.props.category}

{this.props.content}
{this.props.legend} {this.props.stats != null ?
: ""}
{this.props.stats}
); } } export default Card;