jsx-void-dom-elements-no-children
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" />