UNPKG

pop

Version:

Pop is a [Hyperapp](https://github.com/hyperapp/hyperapp) / [Ultradom](https://github.com/ultradom/ultradom) spin-off project — yet another micro-framework for creating graphical user interfaces. This is not the final title, but let's go with that for now

11 lines (9 loc) 187 B
import { h } from "./h" import { patch } from "./patch" export default { h: h, create: function(state, view) { var element = patch(view(state), element) return element } }