--- tags: [recommended, react, jsx, fresh] --- JavaScript comments inside text nodes are rendered as plain text in JSX. This is often unexpected. **Invalid:** ```tsx
// comment
/* comment */
``` **Valid:** ```tsx
{/* comment */}
; ```