Turn JSX into pure function calls
npm install babel-plugin-transform-functional-jsxIn
``js`
Out
`js``
div(
null,
a({ href: "other.html" }, "Link"),
ul(
null,
...[li(null, "Item A"), li(null, "Item B")],
li(null, "Item Last")
)
);