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