Check out example codes for "insertar html en react". It will help you in understanding the concepts better.
Code Example 1
//Este atributo se le puede agregar a culaquier elememto html de un JSX para
//inyectarle el contenido html que tenga una variable
-----dangerouslySetInnerHTML={{_html: variable}}------------
Ejemplo
<div dangerouslySetInnerHTML={{ __html: props.data }}></div>
Learn ReactJs, React Native from akashmittal.com