uber / nebula.gl

A suite of 3D-enabled data editing overlays, suitable for deck.gl

Home Page:https://nebula.gl/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

issues with React "react": "^18.2.0",

nightfury07x opened this issue · comments

why nebula.gl get stuck with "react": "^18.2.0", and use dom render like this

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(

);

but works fine when use like this

const rootElement = document.getElementById("root");
ReactDOM.render(, rootElement);

Duplicate of #765