0 votes
in ReactJS by
ReactDOMServer renderToString()

1 Answer

0 votes
by
ReactDOMServer.renderToString(element)

Render a React element to its initial HTML. React will return an HTML string. You can use this method to generate HTML on the server and send the markup down on the initial request for faster page loads and to allow search engines to crawl your pages for SEO purposes.

If you call ReactDOM.hydrate() on a node that already has this server-rendered markup, React will preserve it and only attach event handlers, allowing you to have a very performant first-load experience.

Related questions

0 votes
asked Dec 14, 2019 in ReactJS by AdilsonLima
...