I have a code like this I want to change the tag name starting with <all.
{services.map((item) => (
<div className="space-x-[8px] py-[8px] flex ">
<div className="flex flex-col text-center relative px-[8px] py-[8px] items-center active:bg-[#f5f5f5] cursor-pointer">
<All.${item}
sx={{ fontSize: "40px" }}
className="text-[#6B84DD] w-[64px] h-[p64x] text-3xl"
/>
<span className=" font-merrisans text-[14px] font-semibold">
{item}
</span>
</div>
</div>
))}
I tried like this
{services.map((item) => (
<div className="space-x-[8px] py-[8px] flex ">
<div className="flex flex-col text-center relative px-[8px] py-[8px] items-center active:bg-[#f5f5f5] cursor-pointer">
{(`{<All.${item}
sx={{ fontSize: "40px" }}
className="text-[#6B84DD] w-[64px] h-[p64x] text-3xl"
/>`)}
<span className=" font-merrisans text-[14px] font-semibold">
{item}
</span>
</div>
</div>
))}
but it didn't worked
it showing