How to render HTML from this.data using meteor-react?

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 :wink:

I think this might be what you are looking for:

1 Like

Thank you.
It works :wink:

1 Like