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');
	}
});