import React from "react"; const CardComponent = (props) => { const { tag, articles } = props; return (

{tag}

{tag === "Listings" && ( see all )}
); }; export default CardComponent;