Im working through my app, but I'm stuck on an issue.
I have some data from contentful which I passed as props to my component. There is one piece of data that I only want to render if it contains any value.
This work to an extent, however, the background still shows.
<div className="text-white font-base text-xs text-center p-1.5 bg-black">
{`${mrr ? mrr : ""}`}
</div>
If anyone could help, that would be great.