UNPKG

@antv/f2

Version:

Charts for mobile visualization.

16 lines (14 loc) 366 B
import { JSX as JSXNamespace } from './jsx-namespace'; import { ElementType } from '../types'; // 实现jsx-automatic 入口 export function jsx(type: ElementType, config, key?: string): JSXNamespace.Element { const { ref, ...props } = config || {}; return { key, ref, type, props, // 存储一些过程中的cache值 _cache: {}, }; }