I want to be able to pass text with HTML tags, like so:
not working.\" />
Bu
You can use dangerouslySetInnerHTML
Just send the html as a normal string
And render in in the JSX code like this:
Just be careful if you are rendering data entered by the user. You can be victim of a XSS attack
Here's the documentation: https://facebook.github.io/react/tips/dangerously-set-inner-html.html