Hi All,
I want to render HTML from this.data in such a way:
render() {
return (
{this.data.content}
);
}
What should I do if I want to render it as HTML and not as string?
Thanks in advance 
Hi All,
I want to render HTML from this.data in such a way:
render() {
return (
{this.data.content}
);
}
What should I do if I want to render it as HTML and not as string?
Thanks in advance 
I think this might be what you are looking for:
Thank you.
It works 