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