mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 02:35:07 +00:00
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
|
|
};
|
|
});
|