Làm cách nào tôi có thể sử dụng các nhận xét bên trong render
phương thức trong thành phần React?
Tôi có thành phần sau:
'use strict';
var React = require('react'),
Button = require('./button'),
UnorderedList = require('./unordered-list');
class Dropdown extends React.Component{
constructor(props) {
super(props);
}
handleClick() {
alert('I am click here');
}
render() {
return (
<div className="dropdown">
// whenClicked is a property not an event, per se.
<Button whenClicked={this.handleClick} className="btn-default" title={this.props.title} subTitleClassName="caret"></Button>
<UnorderedList />
</div>
)
}
}
module.exports = Dropdown;
Nhận xét của tôi đang hiển thị trong giao diện người dùng.
Điều gì sẽ là cách tiếp cận đúng để áp dụng các nhận xét đơn và nhiều dòng trong một phương thức kết xuất của một thành phần?
{/* JSX comment*/}