frontend/Components/DocViewer/index.tsx
2022-08-26 20:02:52 +03:00

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>
);
}