deno_lint logodeno_lint

All rules/jsx-void-dom-elements-no-children

Ensure that void elements in HTML don't have any children as that is not valid

HTML. See MDN for more information.

Invalid:

<br>foo</br>
<img src="a.jpg">foo</img>

Valid:

<br />
<img src="a.jpg" />