comment in react

JavaScript
{/* A JSX comment */}how to add multiple comment in reactrender() {
  return (
    <div>
      <!-- This doesn't work! -->
    </div>
  )
}{/* 
  Multi
  line
  comment
*/}
Source

Also in JavaScript: