Será que this.props.match.description
é uma string ou um objeto? Se for uma string, ela deve ser convertida para HTML muito bem. Exemplo:
class App extends React.Component {
constructor() {
super();
this.state = {
description: '<h1 style="color:red;">something</h1>'
}
}
render() {
return (
<div dangerouslySetInnerHTML={{ __html: this.state.description }} />
);
}
}
ReactDOM.render(<App />, document.getElementById('root'));
Resultado: http://codepen.io/ilanus/pen/QKgoLA?editors=1011
No entanto, se description: <h1 style="color:red;">something</h1>
sem as aspas ''
você receberá:
Object {
$$typeof: [object Symbol] {},
_owner: null,
key: null,
props: Object {
children: "something",
style: "color:red;"
},
ref: null,
type: "h1"
}
Se é uma string e você não vê nenhuma marcação HTML, o único problema que vejo é a marcação errada.
ATUALIZAR
Se você está lidando com HTMLEntitles. Você precisa decodificá-los antes de enviá-los paradangerouslySetInnerHTML
isso é que eles chamam perigosamente :)
Exemplo de trabalho:
class App extends React.Component {
constructor() {
super();
this.state = {
description: '<p><strong>Our Opportunity:</strong></p>'
}
}
htmlDecode(input){
var e = document.createElement('div');
e.innerHTML = input;
return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
}
render() {
return (
<div dangerouslySetInnerHTML={{ __html: this.htmlDecode(this.state.description) }} />
);
}
}
ReactDOM.render(<App />, document.getElementById('root'));