<MyThing><div class="thing--contents">"Hello"</div></MyThing>
versus const div = document.createElement("div");
div.innerText = "Hello";
div.classList.add("thing-contents");
const wrapper = thingFactory(div);
Aren't we? It just adds up very quickly is what I'm saying.
I was just saying that I do occasionally do things entirely by hand in Javascript with createElement, and it works for a quick thing but it is actually definitely a thing that warrents bringing in some alternative.