We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3783b3b commit c49cfc8Copy full SHA for c49cfc8
packages/voila/package.json
@@ -40,7 +40,8 @@
40
"@lumino/signaling": "^1.7.2",
41
"@lumino/virtualdom": "^1.11.2",
42
"@lumino/widgets": "^1.26.2",
43
- "react": "^17.0.1"
+ "react": "^17.0.1",
44
+ "react-dom": "^17.0.1"
45
},
46
"devDependencies": {
47
"@babel/core": "^7.2.2",
packages/voila/src/main.ts
@@ -12,6 +12,9 @@
12
13
// Inspired by: https://github.com/jupyterlab/jupyterlab/blob/master/dev_mode/index.js
14
15
+// Inject some packages in the shared scope
16
+import 'react-dom';
17
+
18
import { PageConfig, URLExt } from '@jupyterlab/coreutils';
19
20
import { VoilaApp } from './app';
0 commit comments