import { RecommendationCard } from '@recommendations/components/RecommendationCard';
export const RecommendationsGrid = ({ recommendations }) => {
return (
{recommendations.map((recommendation) =>
// Don't render the card if the CTA type is not supported.
['plugin', 'external-link', 'internal-link'].includes(
recommendation.ctaType,
) ? (
) : null,
)}
);
};