Answers for "comment jsx code"

2

multiline comment in react

{/* 
  Multi
  line
  comment
*/}
Posted by: Guest on June-18-2020
1

comment jsx code

{/*  comment here  */} 
 It is a regular /* Block Comments */, but needs to be wrapped in curly braces.
Posted by: Guest on February-13-2021
2

how to comment out code in react js

render() {
  return (
    <div>
      <!-- This doesn't work! -->
    </div>
  )
}
Posted by: Guest on March-29-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language