UNPKG

@chatui/core

Version:

The React library for Chatbot UI

11 lines (10 loc) 309 B
import React from 'react'; export type TreeNodeProps = { title: string; content?: string; link?: string; onClick: (data: any) => void; onExpand: (title: string, isFolded: boolean) => void; children: any[]; }; export declare const TreeNode: (props: TreeNodeProps) => React.JSX.Element;