@nfdi4plants/arc-web-view
Version:
An Annotated Research Context web viewer in the style of GitHub's Primer ProductUI.
9 lines (8 loc) • 338 B
TypeScript
interface WebViewerProps {
jsonString: string;
readmefetch?: () => Promise<string>;
licensefetch?: () => Promise<string>;
clearJsonCallback?: () => void;
}
export default function WebViewer({ jsonString, readmefetch, licensefetch, clearJsonCallback, }: WebViewerProps): import("react/jsx-runtime").JSX.Element;
export {};