// Catalog card for a single extension const CatalogCard = (props) => { const item = props.item; return (
{ item.name }
by { item.author }
{ item.description }
Learn More...
); }; export default CatalogCard;