mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
12 lines
202 B
TypeScript
12 lines
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>
|
||
|
)
|
||
|
}
|