mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 17:48:07 +02:00
12 lines
No EOL
202 B
TypeScript
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>
|
|
)
|
|
} |