使用dangerouslySetInnerHTML



const element = (<div dangerouslySetInnerHTML={{__html:"<h1>hello,this is react</h1>"}} />);

ReactDOM.render(
element,
document.getElementById('example')
);