mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
2af5be4c4c
var container = ...; // some DOM node
React.renderComponent(<div />, container);
React.renderComponent(<span />, container);
This should replace the rendered <div> with a <span>, effectively
reconciling at the root level.
(cherry picked from commit 100af48f53)