diff --git a/ShadowEditor.Web/src/component/BasicComponent.js b/ShadowEditor.Web/src/component/BasicComponent.js new file mode 100644 index 00000000..61cb4d83 --- /dev/null +++ b/ShadowEditor.Web/src/component/BasicComponent.js @@ -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; \ No newline at end of file