<div>
<h3>{this.props.product.name}</h3>
<h3>{this.props.product.code}</h3>
{this.renderColors()}
<article>
<div dangerouslySetInnerHTML={this.createMarkup(this.props.product.description)} />
</article>
</div>
Looking for a way to style this React-rendered content using CSS. I have a separate CSS file available for this HTML file.