React
Comments should be handled in this style
Bad
render() {
return (
<div>
<!-- Comment -->
</div>
)
}
Good
{/* Comment */}
{/*
Multi
line
comment
*/}
React
Comments should be handled in this style
Bad
render() {
return (
<div>
<!-- Comment -->
</div>
)
}
Good
{/* Comment */}
{/*
Multi
line
comment
*/}