I am fetching data from api(created in php),There is description field (data saved by ckeditor)
In my db/api data is saving in following format
<p><strong>Hello admin <em>Lorem Ipsum dummy text</em></strong></p>
And i am using "ReactHtmlParser" for display blog content in web page
{ReactHtmlParser(post.description)}
But its showing me data in following format,how can i solve this ?
<p><strong>Hello admin <em>Lorem Ipsum dummy text</em></strong></p>
My expected output is " Hello admin Lorem Ipsum dummy text "