This is how the render code looks now (And I know it's unsafe to do so):
render: function() {
return (
<div className="container-fluid pages_container">
<p dangerouslySetInnerHTML={{__html: this.state.page.body}} />
</div>
);
}
The question is how can I render it safely?