comment out a line in react code example
Example 1: multiline comment in react
{/*
Multi
line
comment
*/}
Example 2: how to comment out code in react js
render() {
return (
<div>
<!-- This doesn't work! -->
</div>
)
}
{/*
Multi
line
comment
*/}
render() {
return (
<div>
<!-- This doesn't work! -->
</div>
)
}