Package Exports
- snabbdom-render
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (snabbdom-render) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
snabbdom-render
A rendering loop for snabbdom.
Installation
npm install snabbdom-renderUsage
import snabbdom from 'snabbdom'
import h from 'snabbdom/h'
import render from 'snabbdom-render'
const patch = snabbdom.init([])
const tree = () => h('p', new Date().toISOString())
const root = document.getElementById('root')
const update = render(patch, tree, root)
setInterval(update, 3000)For an example built with Redux, see examples/counter.
API
update = render(patch, tree, root)
Use patch to render the given tree on the root node.