Hah, here is an interesting one.
The order of DOM items inside returned containers seems to be rendered reversed. It looks like the library is more broken than I had originally thought.
For example...
<html>
<head><title>{title}</title></head>
<body>
<h1>{subtitle}</h1>
<p>{"This should come second"}</p>
</body>
</html>
renders as
<html>
<head><title>{title}</title></head>
<body>
<p>{"This should come second"}</p>
<h1>{subtitle}</h1>
</body>
</html>
Will see if I can raise some PRs to get this in working order.
Hah, here is an interesting one.
The order of DOM items inside returned containers seems to be rendered reversed. It looks like the library is more broken than I had originally thought.
For example...
renders as
Will see if I can raise some PRs to get this in working order.