mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-11 18:24:43 +02:00
Chore: Complete upgrade to React 18
This commit is contained in:
parent
a40a5ef3bf
commit
9c74d18abf
@ -11,7 +11,7 @@ import { Size } from './ResizableLayout/utils/types';
|
||||
import MenuBar from './MenuBar';
|
||||
import { _ } from '@joplin/lib/locale';
|
||||
const React = require('react');
|
||||
const { render } = require('react-dom');
|
||||
const { createRoot } = require('react-dom/client');
|
||||
const { connect, Provider } = require('react-redux');
|
||||
import Setting from '@joplin/lib/models/Setting';
|
||||
import shim from '@joplin/lib/shim';
|
||||
@ -259,11 +259,11 @@ const Root = connect(mapStateToProps)(RootComponent);
|
||||
|
||||
const store = app().store();
|
||||
|
||||
render(
|
||||
const root = createRoot(document.getElementById('react-root'));
|
||||
root.render(
|
||||
<Provider store={store}>
|
||||
<ErrorBoundary>
|
||||
<Root />
|
||||
</ErrorBoundary>
|
||||
</Provider>,
|
||||
document.getElementById('react-root')
|
||||
</Provider>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user