0 votes
in ReactJS by
ReactDOMServer renderToStaticMarkup()

1 Answer

0 votes
by
ReactDOMServer.renderToStaticMarkup(element)

Similar to renderToString, except this doesn’t create extra DOM attributes that React uses internally, such as data-reactroot. This is useful if you want to use React as a simple static page generator, as stripping away the extra attributes can save some bytes.

If you plan to use React on the client to make the markup interactive, do not use this method. Instead, use renderToString on the server and ReactDOM.hydrate() on the client

Related questions

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