mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 02:05:07 +00:00
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
|
'use strict';
|
||
|
|
||
|
define([
|
||
|
'app/components/projects/index',
|
||
|
'app/components/app',
|
||
|
], function(ProjectsComponents, App) {
|
||
|
return {
|
||
|
App: App,
|
||
|
ProjectsComponents: ProjectsComponents
|
||
|
};
|
||
|
});
|