UNPKG

@cfxjs/react-ui

Version:

Modern and minimalist React UI library.

9 lines (8 loc) 272 B
import React from 'react'; export interface TreeConfig { onFileClick?: (path: string) => void; initialExpand: boolean; isImperative: boolean; } export declare const TreeContext: React.Context<TreeConfig>; export declare const useTreeContext: () => TreeConfig;