UNPKG

@nfdi4plants/arc-web-view

Version:

An Annotated Research Context web viewer in the style of GitHub's Primer ProductUI.

10 lines (9 loc) 381 B
import { TreeNode } from '../../util/types'; interface FileTreeProps { tree: TreeNode | undefined; expandedFolderIds: string[]; currentTreeNode: TreeNode | undefined; navigateTo: (path: string) => void; } export default function FileTree({ tree, currentTreeNode, expandedFolderIds, navigateTo, }: FileTreeProps): import("react/jsx-runtime").JSX.Element; export {};