I have a data
const Data = [
{
id: '1',
title: 'Blablab<b>labl</b>abla',
},
{
id: '2',
title: '2Blablab<b>labl</b>abla',
},
];
<p>{Data.title}</p>
Output : Blablab<b>labl</b>abla
tag <b></b> not render
the output i want is bold
The code above is just an example, for the data in my project I use the API and in the API the data type is string. inside the string contains the html tag but the html is not readable in the display