mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
21 lines
345 B
JavaScript
21 lines
345 B
JavaScript
import React from 'react';
|
|
|
|
export default class Portal extends React.Component {
|
|
componentDidMount() {
|
|
this.createContainer();
|
|
}
|
|
|
|
createContainer() {
|
|
this.container = true;
|
|
this.forceUpdate();
|
|
}
|
|
|
|
render() {
|
|
const { children } = this.props;
|
|
if (this.container) {
|
|
return children;
|
|
}
|
|
return null;
|
|
}
|
|
}
|