JSX
<button onClick={callbackfunc} style={props.style}>{props.text}</button>
<div>
{/* 多行註解 */}
{
// 單行註解
}
</div>
// 錯誤
var Component = React.creatClass({
render: function() {
return (
<h1>title</h1>
<p>article</p>
);
}
});
// 正確
var Component = React.creatClass({
render: function() {
return (
<div>
<h1>title</h1>
<p>article</p>
</div>
);
}
});
<li style={{fontSize:'16px', color:'black'}}>項目</li>
// 外層 {} 是 JSX 用來包裹 JS 程式碼,內層 {} 是代表 JS 物件