1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-01 19:15:01 +02:00

Chore: Fix warning in PDF Viewer

This commit is contained in:
Laurent Cozic 2022-11-28 18:05:23 +01:00
parent 4fd4360c18
commit 58da15432f

View File

@ -1,7 +1,7 @@
import React from 'react';
import shim from '@joplin/lib/shim';
shim.setReact(React);
import { render } from 'react-dom';
const { createRoot } = require('react-dom/client');
import * as pdfjsLib from 'pdfjs-dist';
import MiniViewerApp from './miniViewer';
import MessageService from './messageService';
@ -42,7 +42,5 @@ function App() {
return <div>Error: Unknown app type "{type}"</div>;
}
render(
<App/>,
document.getElementById('pdf-root')
);
const root = createRoot(document.getElementById('pdf-root'));
root.render(<App/>);