We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f519431 + ab708c2 commit 8b03650Copy full SHA for 8b03650
app/scripts/main.js
@@ -1,5 +1,5 @@
1
import React, { useEffect } from 'react';
2
-import { createRoot } from 'react-dom/client';
+import { render } from 'react-dom';
3
4
// Root component.
5
function Root() {
@@ -13,6 +13,6 @@ function Root() {
13
return <p>Hello from Starter</p>;
14
}
15
16
-const container = document.getElementById('app-container');
17
-const root = createRoot(container);
18
-root.render(<Root />);
+// project-seed does not use the latest React API introduced in version 18
+// as commonly used modules might be incompatible with it (e.g. react-helmet v6.1.0).
+render(<Root />, document.querySelector('#app-container'));
0 commit comments