mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 18:25:08 +00:00
12 lines
156 B
JavaScript
12 lines
156 B
JavaScript
|
'use strict';
|
||
|
|
||
|
define([
|
||
|
'app/components/builds/item',
|
||
|
'app/components/builds/list'
|
||
|
], function(Item, List) {
|
||
|
return {
|
||
|
Item: Item,
|
||
|
List: List
|
||
|
};
|
||
|
});
|