How to Print HTML/CkEditor Content in React Js
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
<div dangerouslySetInnerHTML={{__html: props.about.content}}></div>
// Limiting Content
<p dangerouslySetInnerHTML={{__html: this.props.service1.content && this.props.service1.content.substr(0, 400)+'...'}}></p>