So Currently I have this as my object for Props
{
id: "1",
summary: "HTML content inside this string",
name: "John"
}
so what I was trying to do was remove the string so it would print the html as html not as a string but the error I would get with JSON.parse() is this SyntaxError: Unexpected token o in JSON at position 1
HTML content is a very simple Ul with a list of Li's.
How else can I render an objects value that holds HTML so it prints as HTML.
Any help would be amazing.
Thanks