Articles on React.js like to point out, that React.js is great for SEO purposes. Unfortunately, I\'ve never read, how you actually do it.
Do you simply implement _escaped_
It is also possible via ReactDOMServer.renderToStaticMarkup:
Similar to
renderToString
, except this doesn't create extra DOM attributes such asdata-react-id
, that React uses internally. This is useful if you want to use React as a simple static page generator, as stripping away the extra attributes can save lots of bytes.