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
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