Back to Denoland

Jsx No Comment Text Nodes

lint/rules/jsx-no-comment-text-nodes.md

latest208 B
Original Source

JavaScript comments inside text nodes are rendered as plain text in JSX. This is often unexpected.

Invalid:

tsx
<div>// comment</div>
<div>/* comment */</div>

Valid:

tsx
<div></div>;