ijk icon indicating copy to clipboard operation
ijk copied to clipboard

Transforms arrays into virtual dom trees; a terse alternative to JSX and h

Results 3 ijk issues
Sort by recently updated
recently updated
newest added

JFYI The shape of vdom nodes has changed in Preact. See the following definition from their `src/index.d.ts`: ```ts interface VNode { type: ComponentType | string; props: P & { children:...

ultradom is now superfine, it returns to the `'name, 'props', 'children'` signature, and it requires text nodes to be wrapped in a vnode: https://github.com/jorgebucaran/superfine/blob/master/src/index.js#L368-L381 ```js var createVNode = function(name, props,...

I was unable so far to find a way to use ijk with @hyperapp/router (entirely). Have you ever? I thought was almost there but I got stuck on (below): ```...