我的代碼有什麼問題?我在jsbin的控制檯中看到沒有錯誤。React hello world不適用於ES6
http://jsbin.com/susumidode/edit?js,console,output
Class secondComponenent extends React.Component {
render(){
return (
<p>My id is: {this.props.id}</p>
);
}
}
React.render(
<secondComponenent id="abc">,
document.getElementById('react_example')
);
以及如何在React.render渲染多個組件()?
類名必須以大寫字母開頭。 –
http://imgur.com/a/KuPUr – Quentin
@Whitcik沒有解決問題 – dfox