Mostly HTML
Creates HTML from mostly-dom VNode
Get it
yarn add mostly-html mostly-dom# or npm install --save mostly-html mostly-dom
API
toHtml(vNode: VNode): string
Given a VNode it returns a HTML string
console.loghtml// => <div class="foo"><button id="increment">Increment</button><button id="decrement">Decrement</button><h1>1</h1></div>