pdf basic

This commit is contained in:
Timur Ercan
2023-01-19 19:24:01 +01:00
parent 674b9072bd
commit 662e6efea8
7 changed files with 66461 additions and 323 deletions

View File

@ -1,9 +1,19 @@
import { ReactElement } from "react";
import { ReactElement, useEffect } from "react";
import Layout from "../../components/layout";
import { NextPageWithLayout } from "../_app";
import { Document, Page, pdfjs } from "react-pdf";
import dynamic from "next/dynamic";
const PDFViewer = dynamic(() => import("../../components/pdf-viewer"), {
ssr: false,
});
const DocumentsDetailPage: NextPageWithLayout = () => {
return <>docs</>;
return (
<div>
<PDFViewer />
</div>
);
};
DocumentsDetailPage.getLayout = function getLayout(page: ReactElement) {