Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
644 Bytes
import React from "react";
const CardComponent = (props) => {
const { tag, articles } = props;
return (
<div className="card">
<header>
<h3>{tag}</h3>
{tag === "Listings" && (
<a href="/#">
<small>see all</small>
</a>
)}
</header>
<ul>
{articles.map((a) => {
return (
<li key={a.id}>
<a href="/#">{a.mainTitle}</a> <br />
<small>{a.subText}</small>
{a.newarticle && <span>new</span>}
</li>
);
})}
</ul>
</div>
);
};
export default CardComponent;