There was an error while loading. Please reload this page.
1 parent 956f668 commit cd4dfbcCopy full SHA for cd4dfbc
1 file changed
src/Fable.Transforms/BabelPrinter.fs
@@ -455,6 +455,10 @@ module PrinterExtensions =
455
printer.PopIndentation()
456
457
if List.isEmpty children then
458
+ // Self closing tag if el has no children. Matches expected behaviour of JSX with React/Solid etc
459
+ // https://react-cn.github.io/react/tips/self-closing-tag.html
460
+ // Self closing tag is invalid in HTML5 spec
461
+ // https://stackoverflow.com/questions/3558119/are-non-void-self-closing-tags-valid-in-html5
462
printer.Print(" />")
463
else
464
printer.Print(">")
0 commit comments