VDOM helpers for writing direct VDOM-based templates. Based on the excellent diffHTML library behind the scenes.
import {HTML} from "../src/index"
{render, html, body, h1} = HTML
assert.equal "<html><body><h1>Hello, World!</h1></body></html>",
render html [
body [
h1 "Hello, World!"
]
]
npm i panda-vdom