UNPKG

@inkline/paper

Version:

Paper is a unified interface for defining components for Vue and React using a single code base.

5 lines (4 loc) 144 B
import { h as createElement } from "vue"; export const h = (type, props, ...children) => { return createElement(type, props, ...children); };