From bb2998f5002e7327dc6794c8d9bcf89bfa2c52dd Mon Sep 17 00:00:00 2001 From: liteng <930372551@qq.com> Date: Sat, 8 Sep 2018 07:50:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=BA=E6=9C=AC=E4=BF=A1=E6=81=AF=E6=8E=A7?= =?UTF-8?q?=E4=BB=B6=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/component/BasicComponent.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ShadowEditor.Web/src/component/BasicComponent.js 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