mirror of
https://github.com/mozilla/pdf.js.git
synced 2026-04-10 23:34:02 +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>
|
|
)
|
|
} |