comments in react js code example
Example 1: how to add comment in react js
{/* A JSX comment */}
Example 2: comment in react
{/* A JSX comment */}
Example 3: comment jsx code
{/* comment here */}
It is a regular /* Block Comments */, but needs to be wrapped in curly braces.
Example 4: comment out html in react
how to add multiple comment in react
{/*
Multi
line
comment
*/}
Example 5: how to comment out code in react js
render() {
return (
<div>
</div>
)
}
Example 6: Comments inside children section of tag should be placed inside braces
<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>