UNPKG

xatto

Version:

xatto is View Layer Library based on Function and Context using VirtualDOM. This is developed by forking from jorgebucaran/superfine.

10 lines (8 loc) 207 B
import { Component } from './Component' import { Props } from './Props' export interface VNode { children: VNode[] key: any name: string | Component | ((name, props, ...rest) => VNode) props: any }