Lidarr/src/UI/Commands/CommandMessengerCollectionView.js
2015-02-14 19:12:24 +01:00

11 lines
345 B
JavaScript

var Marionette = require('marionette');
var commandCollection = require('./CommandCollection');
var CommandMessengerItemView = require('./CommandMessengerItemView');
var CollectionView = Marionette.CollectionView.extend({
itemView : CommandMessengerItemView
});
module.exports = new CollectionView({
collection : commandCollection
});