UNPKG

@nfdi4plants/arc-web-view

Version:

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

8 lines (7 loc) 282 B
interface WebViewerProps { jsonString: string; readmefetch?: () => Promise<string>; licensefetch?: () => Promise<string>; } export default function WebViewer({ jsonString, readmefetch, licensefetch }: WebViewerProps): import("react/jsx-runtime").JSX.Element; export {};