1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-25 17:48:07 +02:00
pdf.js/examples/create-react-app/src/app.tsx

12 lines
No EOL
202 B
TypeScript

import React from 'react';
import Pdf from './pdf';
export default function App () {
return (
<main>
<h1>PDF.js rendering example with Create React App</h1>
<Pdf />
</main>
)
}