0 votes
in ReactJS by
What is the purpose of render method of react-dom?

1 Answer

0 votes
by

This method is used to render a React element into the DOM in the supplied container and return a reference to the component. If the React element was previously rendered into container, it will perform an update on it and only mutate the DOM as necessary to reflect the latest changes.

ReactDOM.render(element, container[, callback])

If the optional callback is provided, it will be executed after the component is rendered or updated.

Related questions

0 votes
asked Feb 14, 2023 in ReactJS by Robindeniel
0 votes
asked Feb 23, 2021 in ReactJS by SakshiSharma
...