14 lines
207 B
JavaScript
14 lines
207 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app/components/builds/item',
|
|
'app/components/builds/list',
|
|
'app/components/builds/view'
|
|
], function(Item, List, View) {
|
|
return {
|
|
Item: Item,
|
|
List: List,
|
|
View: View
|
|
};
|
|
});
|