これは初めての反応です。 render
関数で次のコードがエラーを返す理由を理解できません。リアクションのレンダリングエラーを理解する
var LikeButton = React.createClass({
getInitialState: function() {
return { liked: false };
}
render: function() {
if (this.state.liked)
return <div>Ti piace!</div>
else
return <a href="#" onClick={this.doLike}>Mi piace</a>
}
doLike: function() {
this.setState({ liked: true });
}
});
ReactDOM.render(<LikeButton />, document.body);
このコードは、タグ<script type = "text/babel">
にあります。
ワットはエラーですか? !! – Panther