Skip to content

Latest commit

History

History
17 lines (14 loc) 路 284 Bytes

File metadata and controls

17 lines (14 loc) 路 284 Bytes

HTML comments inside of JSX won't work, you need to use JavaScript block comments and wrap them in curly brases:

Code:

{/* A JSX comment */}

or

{/* 
  Multi
  line
  comment
*/}

source: How to comment in React JSX