UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 232 B
import { TreeProps } from 'antd'; import { FC } from 'react'; import { TREE } from '../../Types'; export interface ITree { ctype: typeof TREE; props: TreeProps; } declare const Tree: FC<ITree>; export default Tree;