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
Unlike other JSX attributes (e.g. contentEditable), charSet remains unchanged in the HTML output produced by the ReactDOMServer's render methods, which results in a minor inconsistency.
// `charSet` remains unchanged, while the other camel-case// attributes are lowercasedconsole.log(ReactDOMServer.renderToStaticMarkup(<><metacharSet="utf-8"/><metahttpEquiv="refresh"content="3"/><divcontentEditable/></>));