Comments in React
Inside JSX you cannot use <!-- HTML comments -->. Use {/* comment */}. Outside JSX, normal // and /* */. That’s the whole topic. People hit this when they paste HTML into a component.
Comments in React — <!-- HTML comments --> don’t work inside JSX. Use {/* */}.
Exam tip
{/* */} in JSX.