Make sure the return value is identical
18 lines
return (
return (
<div className={`cta-block-box ${className}`}>
<div className={`cta-block-box ${className}`}>
<a
<a
className="cta-box-link"
className="cta-box-link"
href={linkHref}
style={{ backgroundImage: "url(" + mediaURL + ")" }}
style={{ backgroundImage: "url(" + mediaURL + ")" }}
rel="noopener noreferrer"
rel="noopener noreferrer"
>
>
<div className={boxClass}>
<div className={boxClass}>
<h3>
<h3>
{boxTitle}
{boxTitle}
</h3>
</h3>
{contentDescription}
{contentDescription}
<span className="arrow">{linkText ? linkText : linkTitle}</span>
<span className="arrow">{linkText ? linkText : linkTitle}</span>
</div>
</div>
</a>
</a>
</div>
</div>
);
);