mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 17:48:07 +02:00
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import App from './app';
|
|
|
|
import './index.css';
|
|
|
|
ReactDOM.render(<App />, document.getElementById('root'));
|