この文字列をjsxに変換するにはどうすればよいですか?この文字列をHTML要素として表示します。文字列をjsxに変換するには?
this.setState({
input: "<h1 id="heading">Heading</h1> <h2 id="sub-heading">Sub-heading</h2> <h3 id="another-deeper-heading">Another deeper heading</h3>"
});
render() {
return <div>{this.state.input}</div>
}
これは反パターンです – naomik