@nfdi4plants/arc-web-view
Version:
An Annotated Research Context web viewer in the style of GitHub's Primer ProductUI.
10 lines (9 loc) • 370 B
TypeScript
import { TreeNode } from '../../util/types';
interface FileTreeProps {
tree: TreeNode | null;
expandedFolderIds: string[];
currentTreeNode: TreeNode | null;
navigateTo: (path: string) => void;
}
export default function FileTree({ tree, currentTreeNode, expandedFolderIds, navigateTo }: FileTreeProps): import("react/jsx-runtime").JSX.Element;
export {};