GithubHelp home page GithubHelp logo

Comments (3)

gaearon avatar gaearon commented on April 27, 2024 2

There are two different issues here.

The first issue is that calling root.render without root as the this context is not supported.

So this won't work:

const render = createRoot(domNode).render
render(<App />)

You should always write it like this:

const root = createRoot(domNode)
root.render(<App />)

The second issue is that createRoot and hydrateRoot have different signatures but you're trying to use them in the same way. That's also incorrect. The second hydrateRoot argument is required but you are missing it and trying to render() later, which is not how it's supposed to be used. Please see the hydrateRoot documentation and examples.

Here is the fixed version of your code:

https://codesandbox.io/s/musing-ully-kyuics?file=/src/index.js

  const container = document.getElementById("root");
  const reactNode = (
    <StrictMode>
      <App />
    </StrictMode>
  );
  let root;
  if (process.env.SSR) {
    root = hydrateRoot(container, reactNode);
  } else {
    root = createRoot(container);
    root.render(reactNode);
  }

Note that hydrateRoot is done in a single step because we're specifying which tree to hydrate it with. It doesn't need an additional render. However, createRoot needs a full render because it's initially empty.

Hope this helps.

from react.

tariqule avatar tariqule commented on April 27, 2024 1

The error you're seeing suggests that container is undefined, which is causing the error when attempting to access _internalRoot. This could happen if the element with the ID of "root" doesn't exist in the HTML document.

you could try something like this, this would solve your issue

document.addEventListener('DOMContentLoaded', () => {
  renderDom();
});

from react.

arthwood avatar arthwood commented on April 27, 2024

@3gwebtrain see my comment here.

from react.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.