You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import*asReactDOMServerfrom"react-dom/server";constelement=(<html><head>{/* meta and title are hoisted */}<metacharSet="utf-8"/><title>title</title>{/* the script tag is not hoisted */}<scriptsrc="foo"></script>{/* but this is hoisted */}<scriptsrc="foo"async></script></head></html>);console.log(ReactDOMServer.renderToString(element));