mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-06 21:18:12 +00:00
24 lines
592 B
JavaScript
24 lines
592 B
JavaScript
import _inheritsLoose from "@babel/runtime/helpers/inheritsLoose";
|
|
import React, { PureComponent } from 'react';
|
|
import './index.scss';
|
|
|
|
var TopArea = /*#__PURE__*/function (_PureComponent) {
|
|
_inheritsLoose(TopArea, _PureComponent);
|
|
|
|
function TopArea(props) {
|
|
return _PureComponent.call(this, props) || this;
|
|
}
|
|
|
|
var _proto = TopArea.prototype;
|
|
|
|
_proto.render = function render() {
|
|
return React.createElement("div", {
|
|
className: "lowcode-top-area"
|
|
});
|
|
};
|
|
|
|
return TopArea;
|
|
}(PureComponent);
|
|
|
|
TopArea.displayName = 'lowcodeTopArea';
|
|
export { TopArea as default }; |