Skip to content

Commit 8b03650

Browse files
authored
Merge pull request #109 from developmentseed/fix/use-react-legacy-api
Use React legacy API to fix react-helmet
2 parents f519431 + ab708c2 commit 8b03650

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/scripts/main.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useEffect } from 'react';
2-
import { createRoot } from 'react-dom/client';
2+
import { render } from 'react-dom';
33

44
// Root component.
55
function Root() {
@@ -13,6 +13,6 @@ function Root() {
1313
return <p>Hello from Starter</p>;
1414
}
1515

16-
const container = document.getElementById('app-container');
17-
const root = createRoot(container);
18-
root.render(<Root />);
16+
// project-seed does not use the latest React API introduced in version 18
17+
// as commonly used modules might be incompatible with it (e.g. react-helmet v6.1.0).
18+
render(<Root />, document.querySelector('#app-container'));

0 commit comments

Comments
 (0)