基本信息控件。

This commit is contained in:
liteng 2018-09-08 07:50:25 +08:00
parent 71fe3fa98b
commit bb2998f500

View File

@ -0,0 +1,18 @@
import BaseComponent from './BaseComponent';
/**
* 基本信息组件
* @param {*} options
*/
function BasicComponent(options) {
BaseComponent.call(this, options);
}
BasicComponent.prototype = Object.create(BaseComponent.prototype);
BasicComponent.prototype.constructor = BasicComponent;
BasicComponent.prototype.render = function () {
};
export default BasicComponent;