mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/frontend.git
synced 2025-02-21 12:20:37 +03:00
19 lines
294 B
TypeScript
19 lines
294 B
TypeScript
|
import React from "react";
|
||
|
import DocViewer, { DocViewerRenderers } from "react-doc-viewer";
|
||
|
|
||
|
|
||
|
|
||
|
interface DocViewer{
|
||
|
paragraphs:string[]
|
||
|
error: string;
|
||
|
variants: string[]
|
||
|
}
|
||
|
|
||
|
export const MyDocViewer : React.FC<DocViewer> = () =>{
|
||
|
|
||
|
|
||
|
return(
|
||
|
<div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|