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>
|
||
|
)
|
||
|
}
|