jsx-void-dom-elements-no-children
RecommendedFresh
Ensure that void elements in HTML don't have any children as that is not valid
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" />