nci/static/js/app/components/builds/index.js

14 lines
207 B
JavaScript
Raw Normal View History

2015-05-07 21:55:40 +00:00
'use strict';
define([
'app/components/builds/item',
2015-05-17 13:48:16 +00:00
'app/components/builds/list',
'app/components/builds/view'
], function(Item, List, View) {
2015-05-07 21:55:40 +00:00
return {
Item: Item,
2015-05-17 13:48:16 +00:00
List: List,
View: View
2015-05-07 21:55:40 +00:00
};
});