This is my JSON Data
const Paper = [{ Head: "<strong>Heading Content</strong>sub-heading", content: ["sample texts...."] }];
And i try to print this data to my page it working but it show like <strong>Heading Content- </strong>subheading
{Paper.map((Paper) => (
<div className='news-papper'>
{Head}
</div>
))}
I wand " Heading Content- subheading " How to print data like this?