有一个经典的React组件:
var CommentForm = React.createClass({
render: function() {
return (
<form className="commentForm">
<input type="text" placeholder="Your name" />
<input type="text" placeholder="Say something..." />
<input type="submit" value="Post" />
</form>
);
}
});
是否可以使用Slim而不是HTML?像这样:
var CommentForm = React.createClass({
render: function() {
return (
form.commentForm
input type="text" placeholder="Your name"
input type="text" placeholder="Say something..."
input type="submit" value="Post"
);
}
});