jsx-void-dom-elements-no-children
Last updated: 2025-01-23
Ensure that void elements in HTML don't have any children as that is not valid
HTML. See
Void element
article on MDN
for more information.
Invalid:
<br>foo</br>
<img src="a.jpg">foo</img>
Valid:
<br />
<img src="a.jpg" />