hedera-web/js/htk/step.js

22 lines
269 B
JavaScript

module.exports = new Class
({
Extends: Vn.Component
,Tag: 'htk-step'
,Properties:
{
name: {
type: String
,value: null
}
}
,appendChild: function (child)
{
this._node.appendChild (child);
}
,render: function ()
{
this.createRoot ('div');
}
});