Tomasz Półgrabia 2021-12-19 20:32:18 +01:00
parent 3d2d3915ef
commit ede67c303b
1 changed files with 2 additions and 1 deletions

View File

@ -2,8 +2,9 @@ define([
"dijit/_TemplatedMixin",
"dijit/_WidgetBase",
"dojo/_base/declare",
"./ChildWidget",
"dojo/text!./MainWidget.html"
], function(_TemplatedMixin, _WidgetBase, declare, template) {
], function(_TemplatedMixin, _WidgetBase, declare, ChildWidget, template) {
return declare("app/widgets/MainWidget", [_WidgetBase, _TemplatedMixin], {
templateString: template
});