UNPKG

@nfdi4plants/arc-web-view

Version:

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

12 lines (11 loc) 468 B
import { ContentType, FileTypes, FileViewerContent } from '../../util/types'; interface FileViewerContentProps { file: FileTypes; contentType: ContentType; } interface FileViewerProps { nodes: FileViewerContent[]; } declare function FileViewerContent({ file, contentType }: FileViewerContentProps): import("react/jsx-runtime").JSX.Element; export default function FileViewer({ nodes }: FileViewerProps): import("react/jsx-runtime").JSX.Element; export {};