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) 209 B
// import { Props } from './Props' import { VNode } from './VNode' export type Component = ( props?: any /* Props */, children?: VNode[], context?, extra? ) => VNode | undefined | null | true | false