How to transform plain text to html JSX in ReactJS How to transform plain text to html JSX in ReactJS reactjs reactjs

How to transform plain text to html JSX in ReactJS


You have to use dangerouslySetInnerHTML:

<p dangerouslySetInnerHTML={{__html: Autolinker.link(this.props.activity.text)}} />