Element to add children to
Optional children: ChildType | ChildrenTypeChildren to append to element
This funcion will append children to element in the order that they appear. To remove children,
clearChildren
This function will sequentially append children to element. If element is already in the DOM (due to a ref for example), each child will cause DOM reflow when appended. To avoid this, wrap children in a Fragment when necessary.
Generated using TypeDoc
Adds children to element. A nested array of children will be recursively appended to
elementin the order that they appear. Valuesnull,undefined, andfalsefor children will be ignored.