Back to Denoland

Jsx Void Dom Elements No Children

lint/rules/jsx-void-dom-elements-no-children.md

latest323 B
Original Source

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:

tsx

foo</br>
foo</img>

Valid:

tsx