📅  最后修改于: 2022-03-11 15:02:07.345000             🧑  作者: Mango
render() {
// React does *not* create a new div. It renders the children into `domNode`.
// `domNode` is any valid DOM node, regardless of its location in the DOM.
return ReactDOM.createPortal(
this.props.children,
domNode
);
}