jsx-no-comment-text-nodes
RecommendedFresh
Prevent comment strings being accidentally passed as text in JSX.
Prevent comment strings being accidentally passed as text in JSX.
Invalid:
const foo = <div>// comment</div>;
const foo = <div>/* comment */</div>;
Valid:
const foo = <div>{/* comment */}</div>;