0
私はフォームにckeditorを使用しているので、反応の小道具でHTMLタグを使用できるようにするには、何か機能やトリックが必要です。小道具でHTMLタグを送信する - 反応する
私のコード:
render(){
let name = this.props.name;
let text = this.props.description;
console.log(text);
return (
<li class="collection-item avatar">
<span class="title"> <strong> {name} </strong> </span>
<p > {text} </p>
<a href="#!" class="secondary-content"><i class="material-icons">grade</i></a>
</li>
)
}
}