├── src
├── demo.pdf
├── components
│ ├── PDFViewer
│ │ ├── images
│ │ │ └── shadow.png
│ │ ├── style.css
│ │ ├── index.js
│ │ └── utils.js
│ ├── index.js
│ ├── PDF
│ │ ├── style.css
│ │ └── index.js
│ ├── VirtualizedPdf
│ │ ├── style.css
│ │ └── index.js
│ └── Upload
│ │ ├── style.css
│ │ └── index.js
├── App.js
├── pages
│ ├── uploadFile
│ │ ├── style.css
│ │ └── index.js
│ └── other
│ │ └── index.js
├── setupTests.js
├── App.test.js
├── index.css
├── index.js
├── logo.svg
└── serviceWorker.js
├── public
├── favicon.ico
├── logo192.png
├── logo512.png
├── robots.txt
├── manifest.json
└── index.html
├── node-server
├── README.md
├── package.json
├── stream_read_write.js
├── utils.js
├── app.js
└── yarn.lock
├── .gitignore
├── package.json
└── README.md
/src/demo.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiuSandy/react-pdf-render/HEAD/src/demo.pdf
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiuSandy/react-pdf-render/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiuSandy/react-pdf-render/HEAD/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiuSandy/react-pdf-render/HEAD/public/logo512.png
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/src/components/PDFViewer/images/shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiuSandy/react-pdf-render/HEAD/src/components/PDFViewer/images/shadow.png
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import Other from './pages/other'
3 |
4 | const Index = props => {
5 | return
32 |
Click or drag file to this area to upload
35 |36 | Support for a single or bulk upload. Strictly prohibit from uploading company data or other 37 | band files 38 |
39 |