Hey there! I'm working with the code below:
getDescription = () => {
return(
<div className="Description">{this.props.mytext + ': ' + this.name} </div>
)
}
Is it possible to bold only the specific text stored in the variable this.props.mytext? I tried using tags, but unfortunately they didn't do the trick for me.