ant-design/tests/__mocks__/rc-util/lib/Portal.js

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;
}
}