UNPKG

cluedin-widget

Version:

This is the project for creating and managing widgets in CluedIn.

9 lines (7 loc) 154 B
var Column = function() { this.widgets = []; }; Column.prototype.addWidget = function( w ) { this.widgets.push( w ); }; module.exports = Column;