@nfdi4plants/arc-web-view
Version:
An Annotated Research Context web viewer in the style of GitHub's Primer ProductUI.
9 lines (8 loc) • 326 B
TypeScript
import { TreeNode } from '../../util/types';
interface FileBreadcrumbsProps {
currentTreeNode: TreeNode;
title?: string;
navigateTo: (path: string) => void;
}
export default function FileBreadcrumbs({ currentTreeNode, navigateTo, title }: FileBreadcrumbsProps): import("react/jsx-runtime").JSX.Element;
export {};