import React from "react"; const Card = props => { return (

{props.header}

{props.joined ? "Joined" : "Join"}
); }; export default Card;